public static enum UserInteraction.Interact extends Enum<UserInteraction.Interact>
| Enum Constant and Description |
|---|
DO_NOT_INTERACT
Indicates to the recipient that it MUST NOT interact with the requesting principal, either directly
or indirectly.
|
DO_NOT_INTERACT_FOR_DATA
Indicates to the recipient that it MAY interact with the requesting principal only if an
explicit policy for the offered service so requires.
|
INTERACT_IF_NEEDED
Indicates to the recipient that it should interact with the requesting principal if needed to satisfy
the ID-WSF request.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
UserInteraction.Interact |
getInteractForCode(String code) |
static UserInteraction.Interact |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserInteraction.Interact[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserInteraction.Interact INTERACT_IF_NEEDED
public static final UserInteraction.Interact DO_NOT_INTERACT
public static final UserInteraction.Interact DO_NOT_INTERACT_FOR_DATA
private String code
public static UserInteraction.Interact[] values()
for (UserInteraction.Interact c : UserInteraction.Interact.values()) System.out.println(c);
public static UserInteraction.Interact 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 nullpublic UserInteraction.Interact getInteractForCode(String code)
public String getCode()
Copyright © 1999–2015. All rights reserved.