gluu
|
公開メンバ関数 | |
Mutability (final String name) | |
String | getName () |
公開変数類 | |
READ_ONLY =("readOnly") | |
READ_WRITE =("readWrite") | |
IMMUTABLE =("immutable") | |
WRITE_ONLY =("writeOnly") | |
非公開変数類 | |
String | name |
An enum used to describe the mutability of an attribute.
|
inline |
Mutability enum private constructor.
name | The name of the mutability constraint. |
|
inline |
Returns the mutability value (readOnly, readWrite, etc.) as appears in section 7 of RFC7643.
org.gluu.oxtrust.model.scim2.AttributeDefinition.Mutability.IMMUTABLE =("immutable") |
The attribute can be read, and cannot be set after object creation (unless it was not provided in that moment).
|
private |
The SCIM name for this enum.
org.gluu.oxtrust.model.scim2.AttributeDefinition.Mutability.READ_ONLY =("readOnly") |
The attribute can be read, but not written.
org.gluu.oxtrust.model.scim2.AttributeDefinition.Mutability.READ_WRITE =("readWrite") |
The attribute can be read, and written.
org.gluu.oxtrust.model.scim2.AttributeDefinition.Mutability.WRITE_ONLY =("writeOnly") |
The attribute can only be written, and not read. This might be used for passwords for example.