public enum ResourceAssociationActionType extends Enum<ResourceAssociationActionType>
| Enum Constant and Description |
|---|
ASSIGN
Assign (link + provision) external resource(s) with user/role.
|
LINK
Add association between user/role on Syncope and external resource(s) without any propagation.
|
PROVISION
Add user/role into external resource(s).
|
| Modifier and Type | Method and Description |
|---|---|
static ResourceAssociationActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceAssociationActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceAssociationActionType LINK
public static final ResourceAssociationActionType PROVISION
public static final ResourceAssociationActionType ASSIGN
public static ResourceAssociationActionType[] values()
for (ResourceAssociationActionType c : ResourceAssociationActionType.values()) System.out.println(c);
public static ResourceAssociationActionType 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 © 2010–2018 The Apache Software Foundation. All rights reserved.