gluu
公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.gluu.oxtrust.model.scim2.ErrorResponse クラス
org.gluu.oxtrust.model.scim2.ErrorResponse の継承関係図
Inheritance graph
org.gluu.oxtrust.model.scim2.ErrorResponse 連携図
Collaboration graph

公開メンバ関数

 ErrorResponse ()
 
List< String > getSchemas ()
 
void setSchemas (List< String > schemas)
 
String getStatus ()
 
void setStatus (String status)
 
String getScimType ()
 
void setScimType (ErrorScimType scimType)
 
String getDetail ()
 
void setDetail (String detail)
 

非公開変数類

List< String > schemas
 
String status
 
ErrorScimType scimType
 
String detail
 

詳解

A class that models data of an error response. See section 3.12 of RFC7644.

著者
Val Pecaoco

構築子と解体子

◆ ErrorResponse()

org.gluu.oxtrust.model.scim2.ErrorResponse.ErrorResponse ( )
inline
30  {
31  schemas = Collections.singletonList(ERROR_RESPONSE_URI);
32  }
List< String > schemas
Definition: ErrorResponse.java:24

関数詳解

◆ getDetail()

String org.gluu.oxtrust.model.scim2.ErrorResponse.getDetail ( )
inline

Retrieves a description of the error

戻り値
A string value
70  {
71  return detail;
72  }
String detail
Definition: ErrorResponse.java:28

◆ getSchemas()

List<String> org.gluu.oxtrust.model.scim2.ErrorResponse.getSchemas ( )
inline
34  {
35  return schemas;
36  }
List< String > schemas
Definition: ErrorResponse.java:24

◆ getScimType()

String org.gluu.oxtrust.model.scim2.ErrorResponse.getScimType ( )
inline

Retrieves the error type. E.g. "invalidFilter"

戻り値
A string value
58  {
59  return scimType == null ? "" : scimType.getValue();
60  }
String getValue()
Definition: ErrorScimType.java:50
ErrorScimType scimType
Definition: ErrorResponse.java:27

◆ getStatus()

String org.gluu.oxtrust.model.scim2.ErrorResponse.getStatus ( )
inline

Retrieves the HTTP status code of the error. E.g. "500"

戻り値
A string value
46  {
47  return status;
48  }
String status
Definition: ErrorResponse.java:26

◆ setDetail()

void org.gluu.oxtrust.model.scim2.ErrorResponse.setDetail ( String  detail)
inline
74  {
75  this.detail = detail;
76  }
String detail
Definition: ErrorResponse.java:28

◆ setSchemas()

void org.gluu.oxtrust.model.scim2.ErrorResponse.setSchemas ( List< String >  schemas)
inline
38  {
39  this.schemas = schemas;
40  }
List< String > schemas
Definition: ErrorResponse.java:24

◆ setScimType()

void org.gluu.oxtrust.model.scim2.ErrorResponse.setScimType ( ErrorScimType  scimType)
inline
62  {
63  this.scimType = scimType;
64  }
ErrorScimType scimType
Definition: ErrorResponse.java:27

◆ setStatus()

void org.gluu.oxtrust.model.scim2.ErrorResponse.setStatus ( String  status)
inline
50  {
51  this.status = status;
52  }
String status
Definition: ErrorResponse.java:26

メンバ詳解

◆ detail

String org.gluu.oxtrust.model.scim2.ErrorResponse.detail
private

◆ schemas

List<String> org.gluu.oxtrust.model.scim2.ErrorResponse.schemas
private

◆ scimType

ErrorScimType org.gluu.oxtrust.model.scim2.ErrorResponse.scimType
private

◆ status

String org.gluu.oxtrust.model.scim2.ErrorResponse.status
private

このクラス詳解は次のファイルから抽出されました: