|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.teamdev.jxbrowser.events.NavigationStatusCode
public class NavigationStatusCode
Represents a result HTTP navigation status code.
| Field Summary | |
|---|---|
static NavigationStatusCode |
ACCEPTED
The request has been accepted for processing, but the processing has not been completed. |
static NavigationStatusCode |
BAD_GATEWAY
|
static NavigationStatusCode |
BAD_REQUEST
The request contains bad syntax or cannot be fulfilled. |
static NavigationStatusCode |
CONFLICT
|
static NavigationStatusCode |
CONTINUE
This means that the server has received the request headers, and that the client should proceed to send the request body (in the case of a request for which a body needs to be sent; for example, a POST request). |
static NavigationStatusCode |
CREATED
The request has been fulfilled and resulted in a new resource being created |
static NavigationStatusCode |
EXPECTATION_FAILED
|
static NavigationStatusCode |
FAILED_DEPENDENCY
|
static NavigationStatusCode |
FORBIDDEN
The request was a legal request, but the server is refusing to respond to it. |
static NavigationStatusCode |
FOUND
This is the most popular redirect code, but also an example of industrial practice contradicting the standard. |
static NavigationStatusCode |
GATEWAY_TIMEOUT
|
static NavigationStatusCode |
GONE
Indicates that the resource requested is no longer available and will not be available again. |
static NavigationStatusCode |
HTTP_VERSION_NOT_SUPPORTED
|
static NavigationStatusCode |
IM_USED
|
static NavigationStatusCode |
INSUFFICIENT_STORAGE
|
static NavigationStatusCode |
INTERNAL_SERVER_ERROR
|
static NavigationStatusCode |
LENGTH_REQUIRED
|
static NavigationStatusCode |
LOCKED
|
static NavigationStatusCode |
METHOD_NOT_ALLOWED
A request was made of a resource using a request method not supported by that resource; for example, using GET on a form which requires data to be presented via POST, or using PUT on a read-only resource. |
static NavigationStatusCode |
MOVED_PERMANENTLY
This and all future requests should be directed to the given URI |
static NavigationStatusCode |
MULTI_STATUS
The message body that follows is an XML message and can contain a number of separate response codes, depending on how many sub-requests were made. |
static NavigationStatusCode |
MULTIPLE_CHOICES
Indicates multiple options for the resource that the client may follow. |
static NavigationStatusCode |
NO_CONTENT
The server has fulfilled the request but does not need to return an entity-body, and might want to return updated meta information. |
static NavigationStatusCode |
NON_AUTHORITATIVE_INFORMATION
The returned meta information in the entity-header is not the definitive set as available from the origin server, but is gathered from a local or a third-party copy. |
static NavigationStatusCode |
NOT_ACCEPTABLE
|
static NavigationStatusCode |
NOT_EXTENDED
|
static NavigationStatusCode |
NOT_FOUND
The requested resource could not be found but may be available again in the future. |
static NavigationStatusCode |
NOT_IMPLEMENTED
|
static NavigationStatusCode |
NOT_MODIFIED
Indicates the resource has not been modified since last requested. |
static NavigationStatusCode |
OK
Standard response for successful HTTP requests. |
static NavigationStatusCode |
PARTIAL_CONTENT
The server has fulfilled the partial GET request for the resource. |
static NavigationStatusCode |
PAYMENT_REQUIRED
Deprecated. |
static NavigationStatusCode |
PRECONDITION_FAILED
|
static NavigationStatusCode |
PROCESSING
Processing current request |
static NavigationStatusCode |
PROXY_AUTHENTICATION_REQUIRED
|
static NavigationStatusCode |
REQUEST_ENTITY_TOO_LARGE
|
static NavigationStatusCode |
REQUEST_TIMEOUT
Client failed to continue the request |
static NavigationStatusCode |
REQUEST_URI_TOO_LONG
|
static NavigationStatusCode |
REQUESTED_RANGE_NOT_SATISFIABLE
The client has asked for a portion of the file, but the server cannot supply that portion (for example, if the client asked for a part of the file that lies beyond the end of the file) |
static NavigationStatusCode |
RESET_CONTENT
The server has fulfilled the request and the user agent SHOULD reset the document view which caused the request to be sent. |
static NavigationStatusCode |
SEE_OTHER
The response to the request can be found under another URI using a GET method. |
static NavigationStatusCode |
SERVICE_UNAVAILABLE
|
static NavigationStatusCode |
SWITCHING_PROTOCOLS
Need to change the protocol |
static NavigationStatusCode |
TEMPORARY_REDIRECT
In this occasion, the request should be repeated with another URI, but future requests can still use the original URI. |
static NavigationStatusCode |
UNAUTHORIZED
Similar to 403 Forbidden, but specifically for use when authentication is possible but has failed or not yet been provided. |
static NavigationStatusCode |
UNKNOWN
Unknown navigation status code. |
static NavigationStatusCode |
UNPROCESSABLE_ENTITY
|
static NavigationStatusCode |
UNSUPPORTED_MEDIA_TYPE
|
static NavigationStatusCode |
UPGRADE_REQUIRED
|
static NavigationStatusCode |
USE_PROXY
Many HTTP clients (such as Mozilla and Internet Explorer) don't correctly handle responses with this status code, primarily for security reasons. |
static NavigationStatusCode |
VARIANT_ALSO_NEGOTIATES
|
| Constructor Summary | |
|---|---|
NavigationStatusCode(long value,
java.lang.String description)
|
|
| Method Summary | |
|---|---|
boolean |
equals(java.lang.Object obj)
|
java.lang.String |
getDescription()
Returns the description of navigation status code. |
long |
getValue()
Returns the status code value associated with the navigation status code. |
int |
hashCode()
|
java.lang.String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final NavigationStatusCode UNKNOWN
public static final NavigationStatusCode CONTINUE
public static final NavigationStatusCode SWITCHING_PROTOCOLS
public static final NavigationStatusCode PROCESSING
public static final NavigationStatusCode OK
public static final NavigationStatusCode CREATED
public static final NavigationStatusCode ACCEPTED
public static final NavigationStatusCode NON_AUTHORITATIVE_INFORMATION
public static final NavigationStatusCode NO_CONTENT
public static final NavigationStatusCode RESET_CONTENT
public static final NavigationStatusCode PARTIAL_CONTENT
public static final NavigationStatusCode MULTI_STATUS
public static final NavigationStatusCode IM_USED
public static final NavigationStatusCode MULTIPLE_CHOICES
public static final NavigationStatusCode MOVED_PERMANENTLY
public static final NavigationStatusCode FOUND
public static final NavigationStatusCode SEE_OTHER
public static final NavigationStatusCode NOT_MODIFIED
public static final NavigationStatusCode USE_PROXY
public static final NavigationStatusCode TEMPORARY_REDIRECT
public static final NavigationStatusCode BAD_REQUEST
public static final NavigationStatusCode UNAUTHORIZED
@Deprecated public static final NavigationStatusCode PAYMENT_REQUIRED
public static final NavigationStatusCode FORBIDDEN
public static final NavigationStatusCode NOT_FOUND
public static final NavigationStatusCode METHOD_NOT_ALLOWED
public static final NavigationStatusCode NOT_ACCEPTABLE
public static final NavigationStatusCode PROXY_AUTHENTICATION_REQUIRED
public static final NavigationStatusCode REQUEST_TIMEOUT
public static final NavigationStatusCode CONFLICT
public static final NavigationStatusCode GONE
public static final NavigationStatusCode LENGTH_REQUIRED
public static final NavigationStatusCode PRECONDITION_FAILED
public static final NavigationStatusCode REQUEST_ENTITY_TOO_LARGE
public static final NavigationStatusCode REQUEST_URI_TOO_LONG
public static final NavigationStatusCode UNSUPPORTED_MEDIA_TYPE
public static final NavigationStatusCode REQUESTED_RANGE_NOT_SATISFIABLE
public static final NavigationStatusCode EXPECTATION_FAILED
public static final NavigationStatusCode UNPROCESSABLE_ENTITY
public static final NavigationStatusCode LOCKED
public static final NavigationStatusCode FAILED_DEPENDENCY
public static final NavigationStatusCode UPGRADE_REQUIRED
public static final NavigationStatusCode INTERNAL_SERVER_ERROR
public static final NavigationStatusCode NOT_IMPLEMENTED
public static final NavigationStatusCode BAD_GATEWAY
public static final NavigationStatusCode SERVICE_UNAVAILABLE
public static final NavigationStatusCode GATEWAY_TIMEOUT
public static final NavigationStatusCode HTTP_VERSION_NOT_SUPPORTED
public static final NavigationStatusCode VARIANT_ALSO_NEGOTIATES
public static final NavigationStatusCode INSUFFICIENT_STORAGE
public static final NavigationStatusCode NOT_EXTENDED
| Constructor Detail |
|---|
public NavigationStatusCode(long value,
java.lang.String description)
| Method Detail |
|---|
public long getValue()
public java.lang.String getDescription()
public java.lang.String toString()
toString in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||