Enum Class UserSourceEditCapability
java.lang.Object
java.lang.Enum<UserSourceEditCapability>
com.inductiveautomation.ignition.common.user.UserSourceEditCapability
- All Implemented Interfaces:
Serializable
,Comparable<UserSourceEditCapability>
,Constable
This enumeration contains capabilities that a user source can support. The full set of supported capabilities should
be returned via the user source's implementation of getEditFlags().
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCan a role be added?Can a user be added?Can a role be deleted?Can a user be deleted?Can the user's password be changed?Can the role's metadata be edited?Can the role's name be changed?Can the user's meta data (incl.Can the user's username be changed? -
Method Summary
Modifier and TypeMethodDescriptionstatic UserSourceEditCapability
Returns the enum constant of this class with the specified name.static UserSourceEditCapability[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EDIT_USERNAME
Can the user's username be changed? -
EDIT_PASSWORD
Can the user's password be changed? -
EDIT_USER_META
Can the user's meta data (incl. roles, contactinfo, schedules) be edited? -
ADD_USER
Can a user be added? -
DELETE_USER
Can a user be deleted? -
ADD_ROLE
Can a role be added? -
EDIT_ROLENAME
Can the role's name be changed? -
EDIT_ROLE_META
Can the role's metadata be edited? -
DELETE_ROLE
Can a role be deleted?
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-