Package com.sodius.oslc.client
Interface ClientRequest
-
public interface ClientRequestA request issued by executing any one of the invocation methods on aOslcResource.- Since:
- 3.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetEntity()Get the request entity to send with the request.MultivaluedMap<String,String>getHeaders()Get the map of headersStringgetMethod()Get the HTTP methodURIgetURI()Get the uri of the request
-
-
-
Method Detail
-
getMethod
String getMethod()
Get the HTTP method- Returns:
- the HTTP method
-
getURI
URI getURI()
Get the uri of the request- Returns:
- the uri of the request
-
getHeaders
MultivaluedMap<String,String> getHeaders()
Get the map of headers- Returns:
- the map of headers
-
getEntity
Object getEntity()
Get the request entity to send with the request.- Returns:
- the request entity instance
-
-