Class OperationalAttributes
- java.lang.Object
-
- org.identityconnectors.framework.common.objects.OperationalAttributes
-
public final class OperationalAttributes extends java.lang.ObjectOperational attributes have special meaning and cannot be represented by pure operations. For instance some administrators would like to create an account in the disabled state. They do not want this to be a two operation process since this can leave the door open to abuse. Therefore special attributes that can perform operations were introduced. The enable attribute could be added to the set of attributes sent to a Connector for theCreateOpoperation. To tell theConnectorto create the account with it in the disabled state whether the target resource itself has an attribute or an additional method must be called.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCURRENT_PASSWORD_NAMEUsed in conjunction with password to do an account level password change.static java.lang.StringDISABLE_DATE_NAMEGets/sets the disable date for an object.static java.lang.StringENABLE_DATE_NAMEGets/sets the enable date for an object.static java.lang.StringENABLE_NAMEGets/sets the enable status of an object.static java.lang.StringLOCK_OUT_NAMEGets/sets the lock out attribute for an object.static java.util.Set<java.lang.String>OPERATIONAL_ATTRIBUTE_NAMESstatic java.lang.StringPASSWORD_EXPIRATION_DATE_NAMEGets/sets the password expiration date for an object.static java.lang.StringPASSWORD_EXPIRED_NAMEGets/sets the password expired for an object.static java.lang.StringPASSWORD_NAMENormally this is a write-only attribute.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.Set<java.lang.String>getOperationalAttributeNames()static booleanisOperationalAttribute(Attribute attr)
-
-
-
Field Detail
-
ENABLE_NAME
public static final java.lang.String ENABLE_NAME
Gets/sets the enable status of an object.
-
ENABLE_DATE_NAME
public static final java.lang.String ENABLE_DATE_NAME
Gets/sets the enable date for an object.
-
DISABLE_DATE_NAME
public static final java.lang.String DISABLE_DATE_NAME
Gets/sets the disable date for an object.
-
LOCK_OUT_NAME
public static final java.lang.String LOCK_OUT_NAME
Gets/sets the lock out attribute for an object.
-
PASSWORD_EXPIRATION_DATE_NAME
public static final java.lang.String PASSWORD_EXPIRATION_DATE_NAME
Gets/sets the password expiration date for an object.
-
PASSWORD_EXPIRED_NAME
public static final java.lang.String PASSWORD_EXPIRED_NAME
Gets/sets the password expired for an object.
-
PASSWORD_NAME
public static final java.lang.String PASSWORD_NAME
Normally this is a write-only attribute. Sets the password for an object.
-
CURRENT_PASSWORD_NAME
public static final java.lang.String CURRENT_PASSWORD_NAME
Used in conjunction with password to do an account level password change. This is for a non-administrator change of the password and therefore requires the current password.
-
OPERATIONAL_ATTRIBUTE_NAMES
public static final java.util.Set<java.lang.String> OPERATIONAL_ATTRIBUTE_NAMES
-
-
Method Detail
-
getOperationalAttributeNames
public static java.util.Set<java.lang.String> getOperationalAttributeNames()
-
isOperationalAttribute
public static boolean isOperationalAttribute(Attribute attr)
-
-