public enum HttpAttributes extends java.lang.Enum<HttpAttributes> implements java.lang.CharSequence
| Enum Constant and Description | 
|---|
| ERRORAttribute used to store any exception that may have occurred during request processing. | 
| INVOCATION_CONTEXTAttribute used to store the MethodInvocationContext by declarative client. | 
| MEDIA_TYPE_CODECAttribute used to store the MediaTypeCodec. | 
| METHOD_NAMEAttribute used to store the HTTP method name, if required within the response. | 
| PRINCIPALAttribute used to store the  Principal. | 
| ROUTEAttribute used to store the object that represents the Route. | 
| ROUTE_MATCHAttribute used to store the object that represents the Route match. | 
| SERVICE_IDAttribute used to store the service ID a client request is being sent to. | 
| URI_TEMPLATEAttribute used to store the URI template defined by the route. | 
| X509_CERTIFICATEAttribute used to store a client Certificate (mutual authentication). | 
| Modifier and Type | Method and Description | 
|---|---|
| char | charAt(int index) | 
| int | length() | 
| java.lang.CharSequence | subSequence(int start,
           int end) | 
| java.lang.String | toString() | 
| static HttpAttributes | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static HttpAttributes[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final HttpAttributes PRINCIPAL
Principal.public static final HttpAttributes ERROR
public static final HttpAttributes ROUTE
public static final HttpAttributes ROUTE_MATCH
public static final HttpAttributes URI_TEMPLATE
public static final HttpAttributes METHOD_NAME
public static final HttpAttributes SERVICE_ID
public static final HttpAttributes MEDIA_TYPE_CODEC
public static final HttpAttributes INVOCATION_CONTEXT
public static final HttpAttributes X509_CERTIFICATE
public static HttpAttributes[] values()
for (HttpAttributes c : HttpAttributes.values()) System.out.println(c);
public static HttpAttributes valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int length()
length in interface java.lang.CharSequencepublic char charAt(int index)
charAt in interface java.lang.CharSequencepublic java.lang.CharSequence subSequence(int start,
                                          int end)
subSequence in interface java.lang.CharSequencepublic java.lang.String toString()
toString in interface java.lang.CharSequencetoString in class java.lang.Enum<HttpAttributes>