public enum PropertyType extends Enum<PropertyType>
| Enum Constant and Description |
|---|
AGENT_LOGIN_NAME
The login name used by an Agent (or User) to authenticate - this property should be unique
|
ATTRIBUTE_IDENTITY
Connects an attribute entity back to its owning identity
|
ATTRIBUTE_NAME
Attribute name
|
ATTRIBUTE_TYPE
Attribute type
|
ATTRIBUTE_VALUE
Attribute value
|
CREDENTIAL_ATTRIBUTE_CREDENTIAL
Connects a credential attribute value back to its owning credential
|
CREDENTIAL_ATTRIBUTE_NAME
The name of a credential attribute
|
CREDENTIAL_ATTRIBUTE_VALUE
The value of a credential attribute
|
CREDENTIAL_EFFECTIVE_DATE
The effective date of a credential
|
CREDENTIAL_EXPIRY_DATE
The expiry date of a credential
|
CREDENTIAL_IDENTITY
The identity that a credential belongs to
|
CREDENTIAL_TYPE
Credential type
|
CREDENTIAL_VALUE
Credential value
|
GROUP_PARENT
The parent group of a group
|
GROUP_PATH
The group path defines the name hierarchy for a specific group.
|
IDENTITY_CREATION_DATE
Creation date
|
IDENTITY_DISCRIMINATOR
The discriminator identifies the particular identity type (such as user, role, group, etc) of the Identity
|
IDENTITY_ENABLED
Indicates whether the identity type is enabled
|
IDENTITY_EXPIRY_DATE
Expiry date
|
IDENTITY_ID
The unique identifier of an identity
|
IDENTITY_NAME
The name of the identity.
|
IDENTITY_PARTITION
The partition that an identity belongs to
|
PARTITION_ID
The id value of a partition
|
PARTITION_PARENT
The parent partition of a partition, where supported (such as for Tiers)
|
PARTITION_TYPE
The type of partition
|
RELATIONSHIP_ATTRIBUTE_NAME
The name of a relationship attribute
|
RELATIONSHIP_ATTRIBUTE_RELATIONSHIP
Connects a relationship attribute back to its owning relationship
|
RELATIONSHIP_ATTRIBUTE_VALUE
The value of a relationship attribute
|
RELATIONSHIP_CLASS
The fully qualified class name of the relationship type
|
RELATIONSHIP_DESCRIPTOR
Describes the role of an identity within a relationship
|
RELATIONSHIP_ID
The unique identifier of a relationship
|
RELATIONSHIP_IDENTITY
Represents the identity that participates in a relationship
|
RELATIONSHIP_IDENTITY_RELATIONSHIP
Relates a relationship identity back to its owning relationship
|
USER_EMAIL
User's e-mail address
|
USER_FIRST_NAME
User's first name
|
USER_LAST_NAME
User's last name
|
| Modifier and Type | Method and Description |
|---|---|
static PropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyType IDENTITY_ID
public static final PropertyType IDENTITY_DISCRIMINATOR
public static final PropertyType GROUP_PATH
public static final PropertyType IDENTITY_NAME
public static final PropertyType IDENTITY_ENABLED
public static final PropertyType IDENTITY_CREATION_DATE
public static final PropertyType IDENTITY_EXPIRY_DATE
public static final PropertyType CREDENTIAL_VALUE
public static final PropertyType ATTRIBUTE_IDENTITY
public static final PropertyType ATTRIBUTE_NAME
public static final PropertyType ATTRIBUTE_TYPE
public static final PropertyType ATTRIBUTE_VALUE
public static final PropertyType GROUP_PARENT
public static final PropertyType AGENT_LOGIN_NAME
public static final PropertyType USER_FIRST_NAME
public static final PropertyType USER_LAST_NAME
public static final PropertyType USER_EMAIL
public static final PropertyType IDENTITY_PARTITION
public static final PropertyType PARTITION_ID
public static final PropertyType PARTITION_TYPE
public static final PropertyType PARTITION_PARENT
public static final PropertyType CREDENTIAL_IDENTITY
public static final PropertyType CREDENTIAL_TYPE
public static final PropertyType CREDENTIAL_EFFECTIVE_DATE
public static final PropertyType CREDENTIAL_EXPIRY_DATE
public static final PropertyType CREDENTIAL_ATTRIBUTE_CREDENTIAL
public static final PropertyType CREDENTIAL_ATTRIBUTE_NAME
public static final PropertyType CREDENTIAL_ATTRIBUTE_VALUE
public static final PropertyType RELATIONSHIP_ID
public static final PropertyType RELATIONSHIP_CLASS
public static final PropertyType RELATIONSHIP_IDENTITY
public static final PropertyType RELATIONSHIP_IDENTITY_RELATIONSHIP
public static final PropertyType RELATIONSHIP_DESCRIPTOR
public static final PropertyType RELATIONSHIP_ATTRIBUTE_NAME
public static final PropertyType RELATIONSHIP_ATTRIBUTE_VALUE
public static final PropertyType RELATIONSHIP_ATTRIBUTE_RELATIONSHIP
public static PropertyType[] values()
for (PropertyType c : PropertyType.values()) System.out.println(c);
public static PropertyType 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 © 2013. All Rights Reserved.