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

        final String path = buildPath("bulkByProperties");
        final String url = buildUrlWithQueryParams(hostBaseUrl, path, httpRequest);

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



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

        final String path = buildPath("bulkByProperties");
        final String url = buildUrlWithQueryParams(hostBaseUrl, path, httpRequest);

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



