EAF 7.6 Implementation

com.lutris.http
Class HttpStatus

java.lang.Object
  extended by com.lutris.http.HttpStatus

public class HttpStatus
extends java.lang.Object


Field Summary
static int accepted
           
static int badGateway
           
static int badRequest
           
static int conflict
           
static int created
           
static int doContinue
           
static int forbidden
           
static int gatewayTimeout
           
static int gone
           
static int httpVersionNotSupported
           
static int internalServerError
           
static int lenghtRequired
           
static int methodNotAllowed
           
static int movedPermanently
           
static int movedTemporarily
           
static int multipleChoices
           
static int noContent
           
static int nonAuthoritativeInformation
           
static int notAcceptable
           
static int notFound
           
static int notImplemented
           
static int notModified
           
static int ok
           
static int partialContent
           
static int paymentRequired
           
static int preconditionFailed
           
static int proxyAuthenticationRequired
           
static int requestEntityTooLarge
           
static int requestTimeout
           
static int requestUriTooLarge
           
static int resetContent
           
static int seeOther
           
static int serviceUnavailable
           
static int switchingProtocols
           
static int unauthorized
           
static int unsupportedMediaType
           
static int useProxy
           
 
Constructor Summary
HttpStatus()
           
 
Method Summary
static java.lang.String getStatusMsg(int statusCode)
          Get the default status message for a HTTP status code.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

doContinue

public static final int doContinue
See Also:
Constant Field Values

switchingProtocols

public static final int switchingProtocols
See Also:
Constant Field Values

ok

public static final int ok
See Also:
Constant Field Values

created

public static final int created
See Also:
Constant Field Values

accepted

public static final int accepted
See Also:
Constant Field Values

nonAuthoritativeInformation

public static final int nonAuthoritativeInformation
See Also:
Constant Field Values

noContent

public static final int noContent
See Also:
Constant Field Values

resetContent

public static final int resetContent
See Also:
Constant Field Values

partialContent

public static final int partialContent
See Also:
Constant Field Values

multipleChoices

public static final int multipleChoices
See Also:
Constant Field Values

movedPermanently

public static final int movedPermanently
See Also:
Constant Field Values

movedTemporarily

public static final int movedTemporarily
See Also:
Constant Field Values

seeOther

public static final int seeOther
See Also:
Constant Field Values

notModified

public static final int notModified
See Also:
Constant Field Values

useProxy

public static final int useProxy
See Also:
Constant Field Values

badRequest

public static final int badRequest
See Also:
Constant Field Values

unauthorized

public static final int unauthorized
See Also:
Constant Field Values

paymentRequired

public static final int paymentRequired
See Also:
Constant Field Values

forbidden

public static final int forbidden
See Also:
Constant Field Values

notFound

public static final int notFound
See Also:
Constant Field Values

methodNotAllowed

public static final int methodNotAllowed
See Also:
Constant Field Values

notAcceptable

public static final int notAcceptable
See Also:
Constant Field Values

proxyAuthenticationRequired

public static final int proxyAuthenticationRequired
See Also:
Constant Field Values

requestTimeout

public static final int requestTimeout
See Also:
Constant Field Values

conflict

public static final int conflict
See Also:
Constant Field Values

gone

public static final int gone
See Also:
Constant Field Values

lenghtRequired

public static final int lenghtRequired
See Also:
Constant Field Values

preconditionFailed

public static final int preconditionFailed
See Also:
Constant Field Values

requestEntityTooLarge

public static final int requestEntityTooLarge
See Also:
Constant Field Values

requestUriTooLarge

public static final int requestUriTooLarge
See Also:
Constant Field Values

unsupportedMediaType

public static final int unsupportedMediaType
See Also:
Constant Field Values

internalServerError

public static final int internalServerError
See Also:
Constant Field Values

notImplemented

public static final int notImplemented
See Also:
Constant Field Values

badGateway

public static final int badGateway
See Also:
Constant Field Values

serviceUnavailable

public static final int serviceUnavailable
See Also:
Constant Field Values

gatewayTimeout

public static final int gatewayTimeout
See Also:
Constant Field Values

httpVersionNotSupported

public static final int httpVersionNotSupported
See Also:
Constant Field Values
Constructor Detail

HttpStatus

public HttpStatus()
Method Detail

getStatusMsg

public static java.lang.String getStatusMsg(int statusCode)
Get the default status message for a HTTP status code.


EAF 7.6 Implementation