@Controller @RequestMapping(value="/*") public class HttpMessageController extends Object
| Constructor and Description |
|---|
HttpMessageController() |
| Modifier and Type | Method and Description |
|---|---|
EndpointAdapter |
getEndpointAdapter()
Gets the endpoint adapter.
|
HttpEndpointConfiguration |
getEndpointConfiguration()
Gets the endpoint configuration.
|
org.springframework.http.ResponseEntity<String> |
getResponseCache()
Gets the responseCache.
|
org.springframework.http.ResponseEntity<String> |
handleDeleteRequest(org.springframework.http.HttpEntity<String> requestEntity) |
org.springframework.http.ResponseEntity<String> |
handleGetRequest(org.springframework.http.HttpEntity<String> requestEntity) |
org.springframework.http.ResponseEntity<String> |
handleHeadRequest(org.springframework.http.HttpEntity<String> requestEntity) |
org.springframework.http.ResponseEntity<String> |
handleOptionsRequest(org.springframework.http.HttpEntity<String> requestEntity) |
org.springframework.http.ResponseEntity<String> |
handlePatchRequest(org.springframework.http.HttpEntity<String> requestEntity) |
org.springframework.http.ResponseEntity<String> |
handlePostRequest(org.springframework.http.HttpEntity<String> requestEntity) |
org.springframework.http.ResponseEntity<String> |
handlePutRequest(org.springframework.http.HttpEntity<String> requestEntity) |
org.springframework.http.ResponseEntity<String> |
handleTraceRequest(org.springframework.http.HttpEntity<String> requestEntity) |
void |
setEndpointAdapter(EndpointAdapter endpointAdapter)
Sets the endpointAdapter.
|
void |
setEndpointConfiguration(HttpEndpointConfiguration endpointConfiguration)
Sets the endpoint configuration.
|
@RequestMapping(value="**",
method=GET)
@ResponseBody
public org.springframework.http.ResponseEntity<String> handleGetRequest(org.springframework.http.HttpEntity<String> requestEntity)
@RequestMapping(value="**",
method=POST)
@ResponseBody
public org.springframework.http.ResponseEntity<String> handlePostRequest(org.springframework.http.HttpEntity<String> requestEntity)
@RequestMapping(value="**",
method=PUT)
@ResponseBody
public org.springframework.http.ResponseEntity<String> handlePutRequest(org.springframework.http.HttpEntity<String> requestEntity)
@RequestMapping(value="**",
method=DELETE)
@ResponseBody
public org.springframework.http.ResponseEntity<String> handleDeleteRequest(org.springframework.http.HttpEntity<String> requestEntity)
@RequestMapping(value="**",
method=OPTIONS)
@ResponseBody
public org.springframework.http.ResponseEntity<String> handleOptionsRequest(org.springframework.http.HttpEntity<String> requestEntity)
@RequestMapping(value="**",
method=HEAD)
@ResponseBody
public org.springframework.http.ResponseEntity<String> handleHeadRequest(org.springframework.http.HttpEntity<String> requestEntity)
@RequestMapping(value="**",
method=TRACE)
@ResponseBody
public org.springframework.http.ResponseEntity<String> handleTraceRequest(org.springframework.http.HttpEntity<String> requestEntity)
@RequestMapping(value="**",
method=PATCH)
@ResponseBody
public org.springframework.http.ResponseEntity<String> handlePatchRequest(org.springframework.http.HttpEntity<String> requestEntity)
public void setEndpointAdapter(EndpointAdapter endpointAdapter)
endpointAdapter - the endpointAdapter to setpublic EndpointAdapter getEndpointAdapter()
public HttpEndpointConfiguration getEndpointConfiguration()
public void setEndpointConfiguration(HttpEndpointConfiguration endpointConfiguration)
endpointConfiguration - public org.springframework.http.ResponseEntity<String> getResponseCache()
Copyright © 2008–2017 ConSol Software GmbH. All rights reserved.