gluu
公開メンバ関数 | 公開変数類 | 非公開変数類 | 全メンバ一覧
列挙 org.gluu.oxtrust.model.scim2.AttributeDefinition.Mutability 詳解
org.gluu.oxtrust.model.scim2.AttributeDefinition.Mutability 連携図
Collaboration graph

公開メンバ関数

 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.

構築子と解体子

◆ Mutability()

org.gluu.oxtrust.model.scim2.AttributeDefinition.Mutability.Mutability ( final String  name)
inline

Mutability enum private constructor.

引数
nameThe name of the mutability constraint.
85  {
86  this.name = name;
87  }
String name
Definition: AttributeDefinition.java:79

関数詳解

◆ getName()

String org.gluu.oxtrust.model.scim2.AttributeDefinition.Mutability.getName ( )
inline

Returns the mutability value (readOnly, readWrite, etc.) as appears in section 7 of RFC7643.

戻り値
A string value
94  {
95  return name;
96  }
String name
Definition: AttributeDefinition.java:79

メンバ詳解

◆ IMMUTABLE

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).

◆ name

String org.gluu.oxtrust.model.scim2.AttributeDefinition.Mutability.name
private

The SCIM name for this enum.

◆ READ_ONLY

org.gluu.oxtrust.model.scim2.AttributeDefinition.Mutability.READ_ONLY =("readOnly")

The attribute can be read, but not written.

◆ READ_WRITE

org.gluu.oxtrust.model.scim2.AttributeDefinition.Mutability.READ_WRITE =("readWrite")

The attribute can be read, and written.

◆ WRITE_ONLY

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.


次のファイルからこの列挙についての詳解を抽出しました: