public static enum SubscriptionCallbackListener.SignatureBehavior extends Enum<SubscriptionCallbackListener.SignatureBehavior>
| Enum Constant and Description |
|---|
AbortIfSigned
Aborts the save request if either the entity exists and is
already signed, or if any parent uddi element is signed
|
DoNothing
Do nothing, don't sign it and don't check if a parent item is
signed or not.
|
SignAlways
Signs this element.
|
SignOnlyIfParentIsntSigned
Signs this element, but only if parents are not signed.
|
| Modifier and Type | Method and Description |
|---|---|
static SubscriptionCallbackListener.SignatureBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubscriptionCallbackListener.SignatureBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubscriptionCallbackListener.SignatureBehavior AbortIfSigned
public static final SubscriptionCallbackListener.SignatureBehavior SignAlways
public static final SubscriptionCallbackListener.SignatureBehavior SignOnlyIfParentIsntSigned
public static final SubscriptionCallbackListener.SignatureBehavior DoNothing
public static SubscriptionCallbackListener.SignatureBehavior[] values()
for (SubscriptionCallbackListener.SignatureBehavior c : SubscriptionCallbackListener.SignatureBehavior.values()) System.out.println(c);
public static SubscriptionCallbackListener.SignatureBehavior valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2004–2021 The Apache Software Foundation. All rights reserved.