Class ScriptEndpointController

Object
ScriptEndpointController

@Controller @CrossOrigin(origins="*") public class ScriptEndpointController extends Object
  • Constructor Details

    • ScriptEndpointController

      public ScriptEndpointController()
  • Method Details

    • onPublicDeleteRequest

      @RequestMapping(value="/api/integration/public/{key}", method=DELETE) @ResponseBody public String onPublicDeleteRequest(@RequestBody(required=false) String body, @PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onTokenAuthDeleteRequest

      @RequestMapping(value="/api/integration/tokenauth/{key}", method=DELETE) @ResponseBody public String onTokenAuthDeleteRequest(@RequestBody(required=false) String body, @PathVariable("key") String key, @RequestParam(value="_x_token_auth",required=false) String tokenAuth, HttpServletRequest req, HttpServletResponse resp)
    • onBearerAuthDeleteRequest

      @RequestMapping(value="/api/integration/bearerauth/{key}", method=DELETE) @ResponseBody public String onBearerAuthDeleteRequest(@RequestBody(required=false) String body, @PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onPublicPatchRequest

      @RequestMapping(value="/api/integration/public/{key}", method=PATCH) @ResponseBody public String onPublicPatchRequest(@RequestBody(required=true) String body, @PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onTokenAuthPatchRequest

      @RequestMapping(value="/api/integration/tokenauth/{key}", method=PATCH) @ResponseBody public String onTokenAuthPatchRequest(@RequestBody(required=true) String body, @PathVariable("key") String key, @RequestParam(value="_x_token_auth",required=false) String tokenAuth, HttpServletRequest req, HttpServletResponse resp)
    • onBearerAuthPatchRequest

      @RequestMapping(value="/api/integration/bearerauth/{key}", method=PATCH) @ResponseBody public String onBearerAuthPatchRequest(@RequestBody(required=true) String body, @PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onPublicPutRequest

      @RequestMapping(value="/api/integration/public/{key}", method=PUT) @ResponseBody public String onPublicPutRequest(@RequestBody(required=true) String body, @PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onTokenAuthPutRequest

      @RequestMapping(value="/api/integration/tokenauth/{key}", method=PUT) @ResponseBody public String onTokenAuthPutRequest(@RequestBody(required=true) String body, @PathVariable("key") String key, @RequestParam(value="_x_token_auth",required=false) String tokenAuth, HttpServletRequest req, HttpServletResponse resp)
    • onBearerAuthPutRequest

      @RequestMapping(value="/api/integration/bearerauth/{key}", method=PUT) @ResponseBody public String onBearerAuthPutRequest(@RequestBody(required=true) String body, @PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onPublicGetRequest

      @RequestMapping(value="/api/integration/public/{key}", method=GET) @ResponseBody public String onPublicGetRequest(@PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onTokenAuthGetRequest

      @RequestMapping(value="/api/integration/tokenauth/{key}", method=GET) @ResponseBody public String onTokenAuthGetRequest(@PathVariable("key") String key, @RequestParam(value="_x_token_auth",required=false) String tokenAuth, HttpServletRequest req, HttpServletResponse resp)
    • onBearerAuthGetRequest

      @RequestMapping(value="/api/integration/bearerauth/{key}", method=GET) @ResponseBody public String onBearerAuthGetRequest(@PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onPublicPostRequest

      @RequestMapping(value="/api/integration/public/{key}", method=POST) @ResponseBody public String onPublicPostRequest(@RequestBody(required=false) String body, @PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onTokenAuthPostRequest

      @RequestMapping(value="/api/integration/tokenauth/{key}", method=POST) @ResponseBody public String onTokenAuthPostRequest(@RequestBody(required=false) String body, @PathVariable("key") String key, @RequestParam(value="_x_token_auth",required=false) String tokenAuth, HttpServletRequest req, HttpServletResponse resp)
    • onBearerAuthPostRequest

      @RequestMapping(value="/api/integration/bearerauth/{key}", method=POST) @ResponseBody public String onBearerAuthPostRequest(@RequestBody(required=false) String body, @PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onBasicAuthDeleteRequest

      @RequestMapping(value="/api/integration/bauth/{key}", method=DELETE) @ResponseBody public String onBasicAuthDeleteRequest(@RequestBody(required=false) String body, @PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onBasicAuthPatchRequest

      @RequestMapping(value="/api/integration/bauth/{key}", method=PATCH) @ResponseBody public String onBasicAuthPatchRequest(@RequestBody(required=true) String body, @PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onBasicAuthPutRequest

      @RequestMapping(value="/api/integration/bauth/{key}", method=PUT) @ResponseBody public String onBasicAuthPutRequest(@RequestBody(required=true) String body, @PathVariable("key") String key, HttpServletRequest req, HttpServletResponse resp)
    • onBasicAuthGetRequest

      @RequestMapping(value="/api/integration/bauth/{key}", method=GET) @ResponseBody public String onBasicAuthGetRequest(@PathVariable("key") String key, @RequestParam(value="_x_token_auth",required=false) String tokenAuth, HttpServletRequest req, HttpServletResponse resp)
    • onBasicAuthPostRequest

      @RequestMapping(value="/api/integration/bauth/{key}", method=POST) @ResponseBody public String onBasicAuthPostRequest(@RequestBody(required=false) String body, @PathVariable("key") String key, @RequestParam(value="_x_token_auth",required=false) String tokenAuth, HttpServletRequest req, HttpServletResponse resp)