Java Code Examples for org.springframework.http.HttpMethod#DELETE
The following examples show how to use
org.springframework.http.HttpMethod#DELETE .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: spring-analysis-note File: SimpleBufferingClientHttpRequest.java License: MIT License | 6 votes |
@Override protected ClientHttpResponse executeInternal(HttpHeaders headers, byte[] bufferedOutput) throws IOException { addHeaders(this.connection, headers); // JDK <1.8 doesn't support getOutputStream with HTTP DELETE if (getMethod() == HttpMethod.DELETE && bufferedOutput.length == 0) { this.connection.setDoOutput(false); } if (this.connection.getDoOutput() && this.outputStreaming) { this.connection.setFixedLengthStreamingMode(bufferedOutput.length); } this.connection.connect(); if (this.connection.getDoOutput()) { FileCopyUtils.copy(bufferedOutput, this.connection.getOutputStream()); } else { // Immediately trigger the request in a no-output scenario as well this.connection.getResponseCode(); } return new SimpleClientHttpResponse(this.connection); }
Example 2
Source Project: spring-analysis-note File: FormContentFilterTests.java License: MIT License | 6 votes |
@Test public void wrapPutPatchAndDeleteOnly() throws Exception { for (HttpMethod method : HttpMethod.values()) { MockHttpServletRequest request = new MockHttpServletRequest(method.name(), "/"); request.setContent("foo=bar".getBytes("ISO-8859-1")); request.setContentType("application/x-www-form-urlencoded; charset=ISO-8859-1"); this.filterChain = new MockFilterChain(); this.filter.doFilter(request, this.response, this.filterChain); if (method == HttpMethod.PUT || method == HttpMethod.PATCH || method == HttpMethod.DELETE) { assertNotSame(request, this.filterChain.getRequest()); } else { assertSame(request, this.filterChain.getRequest()); } } }
Example 3
Source Project: java-technology-stack File: SimpleBufferingClientHttpRequest.java License: MIT License | 6 votes |
@Override protected ClientHttpResponse executeInternal(HttpHeaders headers, byte[] bufferedOutput) throws IOException { addHeaders(this.connection, headers); // JDK <1.8 doesn't support getOutputStream with HTTP DELETE if (getMethod() == HttpMethod.DELETE && bufferedOutput.length == 0) { this.connection.setDoOutput(false); } if (this.connection.getDoOutput() && this.outputStreaming) { this.connection.setFixedLengthStreamingMode(bufferedOutput.length); } this.connection.connect(); if (this.connection.getDoOutput()) { FileCopyUtils.copy(bufferedOutput, this.connection.getOutputStream()); } else { // Immediately trigger the request in a no-output scenario as well this.connection.getResponseCode(); } return new SimpleClientHttpResponse(this.connection); }
Example 4
Source Project: java-technology-stack File: FormContentFilterTests.java License: MIT License | 6 votes |
@Test public void wrapPutPatchAndDeleteOnly() throws Exception { for (HttpMethod method : HttpMethod.values()) { MockHttpServletRequest request = new MockHttpServletRequest(method.name(), "/"); request.setContent("foo=bar".getBytes("ISO-8859-1")); request.setContentType("application/x-www-form-urlencoded; charset=ISO-8859-1"); this.filterChain = new MockFilterChain(); this.filter.doFilter(request, this.response, this.filterChain); if (method == HttpMethod.PUT || method == HttpMethod.PATCH || method == HttpMethod.DELETE) { assertNotSame(request, this.filterChain.getRequest()); } else { assertSame(request, this.filterChain.getRequest()); } } }
Example 5
Source Project: lams File: SimpleBufferingClientHttpRequest.java License: GNU General Public License v2.0 | 6 votes |
@Override protected ClientHttpResponse executeInternal(HttpHeaders headers, byte[] bufferedOutput) throws IOException { addHeaders(this.connection, headers); // JDK <1.8 doesn't support getOutputStream with HTTP DELETE if (HttpMethod.DELETE == getMethod() && bufferedOutput.length == 0) { this.connection.setDoOutput(false); } if (this.connection.getDoOutput() && this.outputStreaming) { this.connection.setFixedLengthStreamingMode(bufferedOutput.length); } this.connection.connect(); if (this.connection.getDoOutput()) { FileCopyUtils.copy(bufferedOutput, this.connection.getOutputStream()); } else { // Immediately trigger the request in a no-output scenario as well this.connection.getResponseCode(); } return new SimpleClientHttpResponse(this.connection); }
Example 6
Source Project: spring4-understanding File: SimpleBufferingClientHttpRequest.java License: Apache License 2.0 | 6 votes |
@Override protected ClientHttpResponse executeInternal(HttpHeaders headers, byte[] bufferedOutput) throws IOException { addHeaders(this.connection, headers); // JDK <1.8 doesn't support getOutputStream with HTTP DELETE if (HttpMethod.DELETE == getMethod() && bufferedOutput.length == 0) { this.connection.setDoOutput(false); } if (this.connection.getDoOutput() && this.outputStreaming) { this.connection.setFixedLengthStreamingMode(bufferedOutput.length); } this.connection.connect(); if (this.connection.getDoOutput()) { FileCopyUtils.copy(bufferedOutput, this.connection.getOutputStream()); } return new SimpleClientHttpResponse(this.connection); }
Example 7
Source Project: gemfirexd-oss File: ClientHttpRequest.java License: Apache License 2.0 | 6 votes |
/** * Gets the HTTP method indicating the operation to perform on the resource identified in the client's HTTP request. * This method converts GemFire's HttpMethod enumerated value from the Link into a corresponding Spring HttpMethod * enumerated value. * <p/> * @return a Spring HttpMethod enumerated value indicating the operation to perform on the resource identified in the * client's HTTP request. * @see com.gemstone.gemfire.management.internal.web.http.HttpMethod * @see com.gemstone.gemfire.management.internal.web.domain.Link#getMethod() * @see org.springframework.http.HttpMethod * @see org.springframework.http.HttpRequest#getMethod() */ @Override public HttpMethod getMethod() { switch (getLink().getMethod()) { case DELETE: return HttpMethod.DELETE; case HEAD: return HttpMethod.HEAD; case OPTIONS: return HttpMethod.OPTIONS; case POST: return HttpMethod.POST; case PUT: return HttpMethod.PUT; case TRACE: return HttpMethod.TRACE; case GET: default: return HttpMethod.GET; } }
Example 8
Source Project: gemfirexd-oss File: ClientHttpRequest.java License: Apache License 2.0 | 6 votes |
/** * Gets the HTTP method indicating the operation to perform on the resource identified in the client's HTTP request. * This method converts GemFire's HttpMethod enumerated value from the Link into a corresponding Spring HttpMethod * enumerated value. * <p/> * @return a Spring HttpMethod enumerated value indicating the operation to perform on the resource identified in the * client's HTTP request. * @see com.gemstone.gemfire.management.internal.web.http.HttpMethod * @see com.gemstone.gemfire.management.internal.web.domain.Link#getMethod() * @see org.springframework.http.HttpMethod * @see org.springframework.http.HttpRequest#getMethod() */ @Override public HttpMethod getMethod() { switch (getLink().getMethod()) { case DELETE: return HttpMethod.DELETE; case HEAD: return HttpMethod.HEAD; case OPTIONS: return HttpMethod.OPTIONS; case POST: return HttpMethod.POST; case PUT: return HttpMethod.PUT; case TRACE: return HttpMethod.TRACE; case GET: default: return HttpMethod.GET; } }
Example 9
Source Project: zstack File: RestServer.java License: Apache License 2.0 | 5 votes |
private void collectRestRequestErrConfigApi(List<String> errorApiList, Class apiClass, RestRequest apiRestRequest){ if (apiRestRequest.isAction() && !RESTConstant.DEFAULT_PARAMETER_NAME.equals(apiRestRequest.parameterName())) { errorApiList.add(String.format("[%s] RestRequest config error, Setting parameterName is not allowed when isAction set true", apiClass.getName())); } else if (apiRestRequest.isAction() && HttpMethod.PUT != apiRestRequest.method()) { errorApiList.add(String.format("[%s] RestRequest config error, method can only be set to HttpMethod.PUT when isAction set true", apiClass.getName())); }else if (!RESTConstant.DEFAULT_PARAMETER_NAME.equals(apiRestRequest.parameterName()) && (HttpMethod.PUT == apiRestRequest.method() || HttpMethod.DELETE == apiRestRequest.method())){ errorApiList.add(String.format("[%s] RestRequest config error, method is not allowed to set to HttpMethod.PUT(HttpMethod.DELETE) when parameterName set a value", apiClass.getName())); }else if(HttpMethod.GET == apiRestRequest.method() && !RESTConstant.DEFAULT_PARAMETER_NAME.equals(apiRestRequest.parameterName())){ errorApiList.add(String.format("[%s] RestRequest config error, Setting parameterName is not allowed when method set HttpMethod.GET", apiClass.getName())); } }
Example 10
Source Project: microcks File: HttpTestRunner.java License: Apache License 2.0 | 5 votes |
/** * Build the HttpMethod corresponding to string. Default to POST * if unknown or unrecognized. */ @Override public HttpMethod buildMethod(String method){ if (method != null){ if ("GET".equals(method.toUpperCase().trim())){ return HttpMethod.GET; } else if ("PUT".equals(method.toUpperCase().trim())){ return HttpMethod.PUT; } else if ("DELETE".equals(method.toUpperCase().trim())){ return HttpMethod.DELETE; } } return HttpMethod.POST; }
Example 11
Source Project: cloudbreak File: DynamicRouteStack.java License: Apache License 2.0 | 5 votes |
public Route delete(String url, Route responseHandler) { RouteKey key = new RouteKey(HttpMethod.DELETE, url); boolean hasSparkRoute = mockResponders.containsKey(key); Route route = overrideResponseByUrlWithSimple(key, responseHandler); addDeleteIfNotPresent(url, hasSparkRoute, route); return route; }
Example 12
Source Project: cloudbreak File: DynamicRouteStack.java License: Apache License 2.0 | 4 votes |
public void clearDelete(String url) { RouteKey key = new RouteKey(HttpMethod.DELETE, url); clearRouteIfPresent(key); }
Example 13
Source Project: spring-analysis-note File: MockMvcRequestBuilders.java License: MIT License | 2 votes |
/** * Create a {@link MockHttpServletRequestBuilder} for a DELETE request. * @param urlTemplate a URL template; the resulting URL will be encoded * @param uriVars zero or more URI variables */ public static MockHttpServletRequestBuilder delete(String urlTemplate, Object... uriVars) { return new MockHttpServletRequestBuilder(HttpMethod.DELETE, urlTemplate, uriVars); }
Example 14
Source Project: spring-analysis-note File: MockMvcRequestBuilders.java License: MIT License | 2 votes |
/** * Create a {@link MockHttpServletRequestBuilder} for a DELETE request. * @param uri the URL * @since 4.0.3 */ public static MockHttpServletRequestBuilder delete(URI uri) { return new MockHttpServletRequestBuilder(HttpMethod.DELETE, uri); }
Example 15
Source Project: java-technology-stack File: MockMvcRequestBuilders.java License: MIT License | 2 votes |
/** * Create a {@link MockHttpServletRequestBuilder} for a DELETE request. * @param urlTemplate a URL template; the resulting URL will be encoded * @param uriVars zero or more URI variables */ public static MockHttpServletRequestBuilder delete(String urlTemplate, Object... uriVars) { return new MockHttpServletRequestBuilder(HttpMethod.DELETE, urlTemplate, uriVars); }
Example 16
Source Project: java-technology-stack File: MockMvcRequestBuilders.java License: MIT License | 2 votes |
/** * Create a {@link MockHttpServletRequestBuilder} for a DELETE request. * @param uri the URL * @since 4.0.3 */ public static MockHttpServletRequestBuilder delete(URI uri) { return new MockHttpServletRequestBuilder(HttpMethod.DELETE, uri); }
Example 17
Source Project: spring4-understanding File: MockMvcRequestBuilders.java License: Apache License 2.0 | 2 votes |
/** * Create a {@link MockHttpServletRequestBuilder} for a DELETE request. * @param urlTemplate a URL template; the resulting URL will be encoded * @param urlVariables zero or more URL variables */ public static MockHttpServletRequestBuilder delete(String urlTemplate, Object... urlVariables) { return new MockHttpServletRequestBuilder(HttpMethod.DELETE, urlTemplate, urlVariables); }
Example 18
Source Project: spring4-understanding File: MockMvcRequestBuilders.java License: Apache License 2.0 | 2 votes |
/** * Create a {@link MockHttpServletRequestBuilder} for a DELETE request. * @param uri the URL * @since 4.0.3 */ public static MockHttpServletRequestBuilder delete(URI uri) { return new MockHttpServletRequestBuilder(HttpMethod.DELETE, uri); }