Method Summary |
|
final public Response | delete(String resourceUri) Deletes the identified resource.
Parameters: resourceUri - The URI of the resource to delete. |
final public Response | delete(Reference resourceRef) Deletes the identified resource.
Parameters: resourceRef - The reference of the resource to delete. |
final public Response | get(String resourceUri) Gets the identified resource.
Parameters: resourceUri - The URI of the resource to get. |
final public Response | get(Reference resourceRef) Gets the identified resource.
Parameters: resourceRef - The reference of the resource to get. |
final public Response | handle(Request request) Handles a call.
Parameters: request - The request to handle. |
abstract public void | handle(Request request, Response response) Handles a call. |
final public Response | head(String resourceUri) Gets the identified resource without its representation's content.
Parameters: resourceUri - The URI of the resource to get. |
final public Response | head(Reference resourceRef) Gets the identified resource without its representation's content.
Parameters: resourceRef - The reference of the resource to get. |
final public Response | options(String resourceUri) Gets the options for the identified resource.
Parameters: resourceUri - The URI of the resource to get. |
final public Response | options(Reference resourceRef) Gets the options for the identified resource.
Parameters: resourceRef - The reference of the resource to get. |
final public Response | post(String resourceUri, Representation entity) Posts a representation to the identified resource.
Parameters: resourceUri - The URI of the resource to post to. Parameters: entity - The entity to post. |
final public Response | post(Reference resourceRef, Representation entity) Posts a representation to the identified resource.
Parameters: resourceRef - The reference of the resource to post to. Parameters: entity - The entity to post. |
final public Response | put(String resourceUri, Representation entity) Puts a representation in the identified resource.
Parameters: resourceUri - The URI of the resource to modify. Parameters: entity - The entity to put. |
final public Response | put(Reference resourceRef, Representation entity) Puts a representation in the identified resource.
Parameters: resourceRef - The reference of the resource to modify. Parameters: entity - The entity to put. |