content/30_containerize-app/app/src/main/java/com/atlassian/jira/jsw/sample/dataprovider/RelayDeploymentsController.java [35:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    void bulk(@RequestParam String hostBaseUrl,
              HttpServletRequest httpRequest,
              HttpServletResponse httpResponse) throws IOException {

        final String path = buildPath("bulk");
        final String url = buildUrl(hostBaseUrl, path);

        log.info("calling get url = {}", url);
        httpCommonOperations.post(httpRequest, httpResponse, url);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



content/30_containerize-app/app/src/main/java/com/atlassian/jira/jsw/sample/dataprovider/RelayFeatureflagsController.java [35:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    void bulkPost(@RequestParam String hostBaseUrl,
                  HttpServletRequest httpRequest,
                  HttpServletResponse httpResponse) throws IOException {

        final String path = buildPath("bulk");
        final String url = buildUrl(hostBaseUrl, path);

        log.info("calling get url = {}", url);
        httpCommonOperations.post(httpRequest, httpResponse, url);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



