|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ContentNegotiation>
com.sun.xml.ws.client.ContentNegotiation
public enum ContentNegotiation
Content negotiation enum.
A value of none
means no content negotation at level of the
client transport will be performed to negotiate the encoding of XML infoset.
The default encoding will always be used.
A value of pessimistic
means the client transport will assume
the default encoding of XML infoset for an outbound message unless informed
otherwise by a previously received inbound message.
(The client transport initially and pessimistically assumes that a service
does not support anything other than the default encoding of XML infoset.)
A value of optimistic
means the client transport will assume
a non-default encoding of XML infoset for an outbound message.
(The client transport optimistically assumes that a service
supports the non-default encoding of XML infoset.)
Enum Constant Summary | |
---|---|
none
|
|
optimistic
|
|
pessimistic
|
Field Summary | |
---|---|
static String |
PROPERTY
Property name for content negotiation on RequestContext . |
Method Summary | |
---|---|
static ContentNegotiation |
obtainFromSystemProperty()
Obtain the content negotiation value from a system property. |
static ContentNegotiation |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ContentNegotiation[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ContentNegotiation none
public static final ContentNegotiation pessimistic
public static final ContentNegotiation optimistic
Field Detail |
---|
public static final String PROPERTY
RequestContext
.
Method Detail |
---|
public static final ContentNegotiation[] values()
for(ContentNegotiation c : ContentNegotiation.values()) System.out.println(c);
public static ContentNegotiation valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic static ContentNegotiation obtainFromSystemProperty()
This method will never throw a runtime exception.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |