Class PredefinedAttributeInfos
- java.lang.Object
-
- org.identityconnectors.framework.common.objects.PredefinedAttributeInfos
-
public final class PredefinedAttributeInfos extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static AttributeInfo
AUXILIARY_OBJECT_CLASS
Pseudo-attribute that represents auxiliary object classes.static AttributeInfo
DESCRIPTION
Attribute that should hold the value of the object's description, if one is available.static AttributeInfo
GROUPS
Groups that an account belongs to.static AttributeInfo
LAST_LOGIN_DATE
Last login date for an account.static AttributeInfo
LAST_PASSWORD_CHANGE_DATE
Read-only attribute that shows the last date/time the password was changed.static AttributeInfo
PASSWORD_CHANGE_INTERVAL
Common password policy attribute where the password must be changed every so often.static AttributeInfo
SHORT_NAME
Attribute that should hold a reasonable value to display for the value of an object.
-
-
-
Field Detail
-
SHORT_NAME
public static final AttributeInfo SHORT_NAME
Attribute that should hold a reasonable value to display for the value of an object. If this is not present, then the application will have to use the NAME to show the value.
-
DESCRIPTION
public static final AttributeInfo DESCRIPTION
Attribute that should hold the value of the object's description, if one is available.
-
LAST_PASSWORD_CHANGE_DATE
public static final AttributeInfo LAST_PASSWORD_CHANGE_DATE
Read-only attribute that shows the last date/time the password was changed.
-
PASSWORD_CHANGE_INTERVAL
public static final AttributeInfo PASSWORD_CHANGE_INTERVAL
Common password policy attribute where the password must be changed every so often. The value for this attribute is milliseconds since its the lowest common denominator.
-
LAST_LOGIN_DATE
public static final AttributeInfo LAST_LOGIN_DATE
Last login date for an account. This is usually used to determine inactivity.
-
GROUPS
public static final AttributeInfo GROUPS
Groups that an account belongs to. The Attribute values are the UID value of each group that an account has membership in.
-
AUXILIARY_OBJECT_CLASS
public static final AttributeInfo AUXILIARY_OBJECT_CLASS
Pseudo-attribute that represents auxiliary object classes. Auxiliary object classes can be used in addition to the primary object class. They define additional characteristics of the object.
-
-