|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Method | |
---|---|
org.restlet.gwt.data | Element of information handled by a component via a connector. |
Uses of Method in org.restlet.gwt.data |
---|
Fields in org.restlet.gwt.data declared as Method | |
---|---|
static Method |
Method.CONNECT
Used with a proxy that can dynamically switch to being a tunnel. |
static Method |
Method.COPY
Creates a duplicate of the source resource, identified by the Request-URI, in the destination resource, identified by the URI in the Destination header. |
static Method |
Method.DELETE
Requests that the origin server deletes the resource identified by the request URI. |
static Method |
Method.GET
Retrieves whatever information (in the form of an entity) that is identified by the request URI. |
static Method |
Method.HEAD
Identical to GET except that the server must not return a message body in the response but only the message header. |
static Method |
Method.LOCK
Used to take out a lock of any access type on the resource identified by the request URI. |
static Method |
Method.MKCOL
MKCOL creates a new collection resource at the location specified by the Request URI. |
static Method |
Method.MOVE
Logical equivalent of a copy, followed by consistency maintenance processing, followed by a delete of the source where all three actions are performed atomically. |
static Method |
Method.OPTIONS
Requests for information about the communication options available on the request/response chain identified by the URI. |
static Method |
Method.POST
Requests that the origin server accepts the entity enclosed in the request as a new subordinate of the resource identified by the request URI. |
static Method |
Method.PROPFIND
Retrieves properties defined on the resource identified by the request URI. |
static Method |
Method.PROPPATCH
Processes instructions specified in the request body to set and/or remove properties defined on the resource identified by the request URI. |
static Method |
Method.PUT
Requests that the enclosed entity be stored under the supplied request URI. |
static Method |
Method.TRACE
Used to invoke a remote, application-layer loop-back of the request message. |
static Method |
Method.UNLOCK
Removes the lock identified by the lock token from the request URI, and all other resources included in the lock. |
Methods in org.restlet.gwt.data that return Method | |
---|---|
Method |
Request.getMethod()
Returns the method. |
static Method |
Method.valueOf(java.lang.String name)
Returns the method associated to a given method name. |
Methods in org.restlet.gwt.data that return types with arguments of type Method | |
---|---|
java.util.Set<Method> |
Response.getAllowedMethods()
Returns the modifiable set of methods allowed on the requested resource. |
Methods in org.restlet.gwt.data with parameters of type Method | |
---|---|
Status |
Conditions.getStatus(Method method,
Representation representation)
Returns the conditional status of a variant using a given method. |
void |
Request.setMethod(Method method)
Sets the method called. |
Method parameters in org.restlet.gwt.data with type arguments of type Method | |
---|---|
void |
Response.setAllowedMethods(java.util.Set<Method> allowedMethods)
Sets the set of methods allowed on the requested resource. |
Constructors in org.restlet.gwt.data with parameters of type Method | |
---|---|
Request(Method method,
Reference resourceRef)
Constructor. |
|
Request(Method method,
Reference resourceRef,
Representation entity)
Constructor. |
|
Request(Method method,
java.lang.String resourceUri)
Constructor. |
|
Request(Method method,
java.lang.String resourceUri,
Representation entity)
Constructor. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |