gluu
公開メンバ関数 | 限定公開変数類 | 非公開変数類 | 全メンバ一覧
org.xdi.oxauth.client.GluuConfigurationResponse クラス
org.xdi.oxauth.client.GluuConfigurationResponse の継承関係図
Inheritance graph
org.xdi.oxauth.client.GluuConfigurationResponse 連携図
Collaboration graph

公開メンバ関数

String getIdGenerationEndpoint ()
 
void setIdGenerationEndpoint (String idGenerationEndpoint)
 
String getIntrospectionEndpoint ()
 
void setIntrospectionEndpoint (String introspectionEndpoint)
 
Map< Integer, Set< String > > getAuthLevelMapping ()
 
void setAuthLevelMapping (Map< Integer, Set< String >> authLevelMapping)
 
Map< String, Set< String > > getScopeToClaimsMapping ()
 
void setScopeToClaimsMapping (Map< String, Set< String >> scopeToClaimsMapping)
 
String toString ()
 
int getStatus ()
 
String getLocation ()
 
void setLocation (String location)
 
void setStatus (int status)
 
String getEntity ()
 
void setEntity (String entity)
 
MultivaluedMap< String, Object > getHeaders ()
 
void setHeaders (MultivaluedMap< String, Object > headers)
 

限定公開変数類

int status
 
String location
 
String entity
 
MultivaluedMap< String, Object > headers
 

非公開変数類

String idGenerationEndpoint
 
String introspectionEndpoint
 
Map< Integer, Set< String > > authLevelMapping
 
Map< String, Set< String > > scopeToClaimsMapping
 

詳解

Created by eugeniuparvan on 8/12/16.

関数詳解

◆ getAuthLevelMapping()

Map<Integer, Set<String> > org.xdi.oxauth.client.GluuConfigurationResponse.getAuthLevelMapping ( )
inline
36  {
37  return authLevelMapping;
38  }
Map< Integer, Set< String > > authLevelMapping
Definition: GluuConfigurationResponse.java:15

◆ getEntity()

String org.xdi.oxauth.client.BaseResponse.getEntity ( )
inlineinherited

Returns the entity or body content of the response.

戻り値
The entity or body content of the response.
85  {
86  return entity;
87  }
String entity
Definition: BaseResponse.java:21

◆ getHeaders()

MultivaluedMap<String, Object> org.xdi.oxauth.client.BaseResponse.getHeaders ( )
inlineinherited
98  {
99  return headers;
100  }
MultivaluedMap< String, Object > headers
Definition: BaseResponse.java:22

◆ getIdGenerationEndpoint()

String org.xdi.oxauth.client.GluuConfigurationResponse.getIdGenerationEndpoint ( )
inline
20  {
21  return idGenerationEndpoint;
22  }
String idGenerationEndpoint
Definition: GluuConfigurationResponse.java:11

◆ getIntrospectionEndpoint()

String org.xdi.oxauth.client.GluuConfigurationResponse.getIntrospectionEndpoint ( )
inline
28  {
29  return introspectionEndpoint;
30  }
String introspectionEndpoint
Definition: GluuConfigurationResponse.java:13

◆ getLocation()

String org.xdi.oxauth.client.BaseResponse.getLocation ( )
inlineinherited

Returns the location of the response in the header.

戻り値
The location of the response.
58  {
59  return location;
60  }
String location
Definition: BaseResponse.java:20

◆ getScopeToClaimsMapping()

Map<String, Set<String> > org.xdi.oxauth.client.GluuConfigurationResponse.getScopeToClaimsMapping ( )
inline
44  {
45  return scopeToClaimsMapping;
46  }
Map< String, Set< String > > scopeToClaimsMapping
Definition: GluuConfigurationResponse.java:17

◆ getStatus()

int org.xdi.oxauth.client.BaseResponse.getStatus ( )
inlineinherited

Returns the HTTP status code of the response.

戻り値
The HTTP status code.
49  {
50  return status;
51  }
int status
Definition: BaseResponse.java:19

◆ setAuthLevelMapping()

void org.xdi.oxauth.client.GluuConfigurationResponse.setAuthLevelMapping ( Map< Integer, Set< String >>  authLevelMapping)
inline
40  {
42  }
Map< Integer, Set< String > > authLevelMapping
Definition: GluuConfigurationResponse.java:15

◆ setEntity()

void org.xdi.oxauth.client.BaseResponse.setEntity ( String  entity)
inlineinherited

Sets the entity or body content of the response.

引数
entityThe entity or body content of the response.
94  {
95  this.entity = entity;
96  }
String entity
Definition: BaseResponse.java:21

◆ setHeaders()

void org.xdi.oxauth.client.BaseResponse.setHeaders ( MultivaluedMap< String, Object >  headers)
inlineinherited
102  {
103  this.headers = headers;
104  }
MultivaluedMap< String, Object > headers
Definition: BaseResponse.java:22

◆ setIdGenerationEndpoint()

void org.xdi.oxauth.client.GluuConfigurationResponse.setIdGenerationEndpoint ( String  idGenerationEndpoint)
inline
24  {
26  }
String idGenerationEndpoint
Definition: GluuConfigurationResponse.java:11

◆ setIntrospectionEndpoint()

void org.xdi.oxauth.client.GluuConfigurationResponse.setIntrospectionEndpoint ( String  introspectionEndpoint)
inline
32  {
34  }
String introspectionEndpoint
Definition: GluuConfigurationResponse.java:13

◆ setLocation()

void org.xdi.oxauth.client.BaseResponse.setLocation ( String  location)
inlineinherited

Sets the location of the response in the header.

引数
locationThe location of the response.
67  {
68  this.location = location;
69  }
String location
Definition: BaseResponse.java:20

◆ setScopeToClaimsMapping()

void org.xdi.oxauth.client.GluuConfigurationResponse.setScopeToClaimsMapping ( Map< String, Set< String >>  scopeToClaimsMapping)
inline
48  {
50  }
Map< String, Set< String > > scopeToClaimsMapping
Definition: GluuConfigurationResponse.java:17

◆ setStatus()

void org.xdi.oxauth.client.BaseResponse.setStatus ( int  status)
inlineinherited

Sets the HTTP status code of the response.

引数
statusThe HTTP status code.
76  {
77  this.status = status;
78  }
int status
Definition: BaseResponse.java:19

◆ toString()

String org.xdi.oxauth.client.GluuConfigurationResponse.toString ( )
inline
53  {
54  return "GluuConfigurationResponse{" +
55  "idGenerationEndpoint='" + idGenerationEndpoint + '\'' +
56  ", introspectionEndpoint='" + introspectionEndpoint + '\'' +
57  ", authLevelMapping=" + authLevelMapping +
58  ", scopeToClaimsMapping=" + scopeToClaimsMapping +
59  '}';
60  }
String introspectionEndpoint
Definition: GluuConfigurationResponse.java:13
Map< String, Set< String > > scopeToClaimsMapping
Definition: GluuConfigurationResponse.java:17
String idGenerationEndpoint
Definition: GluuConfigurationResponse.java:11
Map< Integer, Set< String > > authLevelMapping
Definition: GluuConfigurationResponse.java:15

メンバ詳解

◆ authLevelMapping

Map<Integer, Set<String> > org.xdi.oxauth.client.GluuConfigurationResponse.authLevelMapping
private

◆ entity

String org.xdi.oxauth.client.BaseResponse.entity
protectedinherited

◆ headers

MultivaluedMap<String, Object> org.xdi.oxauth.client.BaseResponse.headers
protectedinherited

◆ idGenerationEndpoint

String org.xdi.oxauth.client.GluuConfigurationResponse.idGenerationEndpoint
private

◆ introspectionEndpoint

String org.xdi.oxauth.client.GluuConfigurationResponse.introspectionEndpoint
private

◆ location

String org.xdi.oxauth.client.BaseResponse.location
protectedinherited

◆ scopeToClaimsMapping

Map<String, Set<String> > org.xdi.oxauth.client.GluuConfigurationResponse.scopeToClaimsMapping
private

◆ status

int org.xdi.oxauth.client.BaseResponse.status
protectedinherited

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