Package org.simpleframework.http
Interface Method
public interface Method
The
Method
interface contains the common HTTP methods
that are sent with a request. This only contains those methods
that have been defined within the RFC 2616 specification. These
are defined here for convenience and informational purposes.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
For use with a proxy that can dynamically switch to being a tunnel.static final String
Requests that the origin server delete the resource identified.static final String
Retrieve whatever information is identified by the request.static final String
Retrieve only the headers for the resource that is requested.static final String
Represents a request for the communication options available.static final String
Request that the origin server accept the entity in the request.static final String
Requests that the entity be stored as the resource specifiedstatic final String
Invoke a remote application layer loop back of the request.
-
Field Details
-
CONNECT
For use with a proxy that can dynamically switch to being a tunnel.- See Also:
-
DELETE
Requests that the origin server delete the resource identified.- See Also:
-
GET
Retrieve whatever information is identified by the request.- See Also:
-
HEAD
Retrieve only the headers for the resource that is requested.- See Also:
-
OPTIONS
Represents a request for the communication options available.- See Also:
-
POST
Request that the origin server accept the entity in the request.- See Also:
-
PUT
Requests that the entity be stored as the resource specified- See Also:
-
TRACE
Invoke a remote application layer loop back of the request.- See Also:
-