public enum ResourceDeassociationActionType extends Enum<ResourceDeassociationActionType>
| Enum Constant and Description |
|---|
DEPROVISION
Remove user/role from external resource(s).
|
UNASSIGN
Unassign (unlink + de-provision) external resource(s) from user/role.
|
UNLINK
Remove association between user/role on Syncope and external resource(s) without any propagation.
|
| Modifier and Type | Method and Description |
|---|---|
static ResourceDeassociationActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceDeassociationActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceDeassociationActionType UNLINK
public static final ResourceDeassociationActionType DEPROVISION
public static final ResourceDeassociationActionType UNASSIGN
public static ResourceDeassociationActionType[] values()
for (ResourceDeassociationActionType c : ResourceDeassociationActionType.values()) System.out.println(c);
public static ResourceDeassociationActionType 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.