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