|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ReliableMessagingFeature.DeliveryAssurance>
com.sun.xml.ws.rm.ReliableMessagingFeature.DeliveryAssurance
public static enum ReliableMessagingFeature.DeliveryAssurance
This enumeration defines a number of Delivery Assurance options, which can be supported by RM Sources and RM Destinations.
EXACTLY_ONCE
,
AT_LEAST_ONCE
,
AT_MOST_ONCE
Enum Constant Summary | |
---|---|
AT_LEAST_ONCE
Each message is to be delivered at least once, or else an error will be raised by the RM Source and/or RM Destination. |
|
AT_MOST_ONCE
Each message is to be delivered at most once. |
|
EXACTLY_ONCE
Each message is to be delivered exactly once; if a message cannot be delivered then an error will be raised by the RM Source and/or RM Destination. |
Method Summary | |
---|---|
static ReliableMessagingFeature.DeliveryAssurance |
getDefault()
Provides a default delivery assurance value. |
static ReliableMessagingFeature.DeliveryAssurance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ReliableMessagingFeature.DeliveryAssurance[] |
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 ReliableMessagingFeature.DeliveryAssurance EXACTLY_ONCE
ReliableMessagingFeature.DeliveryAssurance
public static final ReliableMessagingFeature.DeliveryAssurance AT_LEAST_ONCE
ReliableMessagingFeature.DeliveryAssurance
public static final ReliableMessagingFeature.DeliveryAssurance AT_MOST_ONCE
ReliableMessagingFeature.DeliveryAssurance
Method Detail |
---|
public static final ReliableMessagingFeature.DeliveryAssurance[] values()
for(ReliableMessagingFeature.DeliveryAssurance c : ReliableMessagingFeature.DeliveryAssurance.values()) System.out.println(c);
public static ReliableMessagingFeature.DeliveryAssurance 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 namepublic static ReliableMessagingFeature.DeliveryAssurance getDefault()
EXACTLY_ONCE
.ReliableMessagingFeature.DeliveryAssurance
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |