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

公開メンバ関数

 ErrorScimType (String value)
 
String getValue ()
 
String toString ()
 

静的公開メンバ関数

 [static initializer]
 
static ErrorScimType getByValue (String value)
 

公開変数類

 INVALID_FILTER =("invalidFilter")
 
 TOO_MANY =("tooMany")
 
 UNIQUENESS =("uniqueness")
 
 MUTABILITY =("mutability")
 
 INVALID_SYNTAX =("invalidSyntax")
 
 INVALID_PATH =("invalidPath")
 
 NO_TARGET =("noTarget")
 
 INVALID_VALUE =("invalidValue")
 
 INVALID_VERSION =("invalidVers")
 
 SENSITIVE =("sensitive")
 

非公開変数類

String value
 

静的非公開変数類

static Map< String, ErrorScimTypemapByValues = new HashMap<String, ErrorScimType>()
 

詳解

Detail error types when a HTTP 400 response is served. See section 3.12 of RFC7644.

著者
Val Pecaoco

構築子と解体子

◆ ErrorScimType()

org.gluu.oxtrust.model.scim2.ErrorScimType.ErrorScimType ( String  value)
inline
41  {
42  this.value = value;
43  }
String value
Definition: ErrorScimType.java:31

関数詳解

◆ [static initializer]()

org.gluu.oxtrust.model.scim2.ErrorScimType.[static initializer] ( )
inlinestatic

◆ getByValue()

static ErrorScimType org.gluu.oxtrust.model.scim2.ErrorScimType.getByValue ( String  value)
inlinestatic

Returns an instance of ErrorScimType based on a string value corresponding to the scimType property of a json error response. This is the reverse of getValue() method.

引数
valueA string corresponding to scimType
戻り値
A ErrorScimType instance or null if the value passed is unknown
60  {
61  return mapByValues.get(value);
62  }
String value
Definition: ErrorScimType.java:31
static Map< String, ErrorScimType > mapByValues
Definition: ErrorScimType.java:33

◆ getValue()

String org.gluu.oxtrust.model.scim2.ErrorScimType.getValue ( )
inline

Returns the scimType as it should be included in a json error response, e.g. "mutability" or "sensitive"

戻り値
A string value
50  {
51  return value;
52  }
String value
Definition: ErrorScimType.java:31

◆ toString()

String org.gluu.oxtrust.model.scim2.ErrorScimType.toString ( )
inline
65  {
66  return getValue();
67  }
String getValue()
Definition: ErrorScimType.java:50

メンバ詳解

◆ INVALID_FILTER

org.gluu.oxtrust.model.scim2.ErrorScimType.INVALID_FILTER =("invalidFilter")

◆ INVALID_PATH

org.gluu.oxtrust.model.scim2.ErrorScimType.INVALID_PATH =("invalidPath")

◆ INVALID_SYNTAX

org.gluu.oxtrust.model.scim2.ErrorScimType.INVALID_SYNTAX =("invalidSyntax")

◆ INVALID_VALUE

org.gluu.oxtrust.model.scim2.ErrorScimType.INVALID_VALUE =("invalidValue")

◆ INVALID_VERSION

org.gluu.oxtrust.model.scim2.ErrorScimType.INVALID_VERSION =("invalidVers")

◆ mapByValues

static Map<String, ErrorScimType> org.gluu.oxtrust.model.scim2.ErrorScimType.mapByValues = new HashMap<String, ErrorScimType>()
staticprivate

◆ MUTABILITY

org.gluu.oxtrust.model.scim2.ErrorScimType.MUTABILITY =("mutability")

◆ NO_TARGET

org.gluu.oxtrust.model.scim2.ErrorScimType.NO_TARGET =("noTarget")

◆ SENSITIVE

org.gluu.oxtrust.model.scim2.ErrorScimType.SENSITIVE =("sensitive")

◆ TOO_MANY

org.gluu.oxtrust.model.scim2.ErrorScimType.TOO_MANY =("tooMany")

◆ UNIQUENESS

org.gluu.oxtrust.model.scim2.ErrorScimType.UNIQUENESS =("uniqueness")

◆ value

String org.gluu.oxtrust.model.scim2.ErrorScimType.value
private

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