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

公開メンバ関数

 OpenIdConnectDiscoveryResponse (int status)
 
String getSubject ()
 
void setSubject (String subject)
 
List< WebFingerLinkgetLinks ()
 
void setLinks (List< WebFingerLink > links)
 
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 subject
 
List< WebFingerLinklinks
 

詳解

著者
Javier Rojas Blum Date: 01.28.2013

構築子と解体子

◆ OpenIdConnectDiscoveryResponse()

org.xdi.oxauth.client.OpenIdConnectDiscoveryResponse.OpenIdConnectDiscoveryResponse ( int  status)
inline

Constructs an OpenID Connect Discovery Response.

引数
statusThe response status code.
27  {
28  super(status);
29  links = new ArrayList<WebFingerLink>();
30  }
int status
Definition: BaseResponse.java:19
List< WebFingerLink > links
Definition: OpenIdConnectDiscoveryResponse.java:20

関数詳解

◆ 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

◆ getLinks()

List<WebFingerLink> org.xdi.oxauth.client.OpenIdConnectDiscoveryResponse.getLinks ( )
inline
40  {
41  return links;
42  }
List< WebFingerLink > links
Definition: OpenIdConnectDiscoveryResponse.java:20

◆ 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

◆ 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

◆ getSubject()

String org.xdi.oxauth.client.OpenIdConnectDiscoveryResponse.getSubject ( )
inline
32  {
33  return subject;
34  }
String subject
Definition: OpenIdConnectDiscoveryResponse.java:19

◆ 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

◆ setLinks()

void org.xdi.oxauth.client.OpenIdConnectDiscoveryResponse.setLinks ( List< WebFingerLink links)
inline
44  {
45  this.links = links;
46  }
List< WebFingerLink > links
Definition: OpenIdConnectDiscoveryResponse.java:20

◆ 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

◆ 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

◆ setSubject()

void org.xdi.oxauth.client.OpenIdConnectDiscoveryResponse.setSubject ( String  subject)
inline
36  {
37  this.subject = subject;
38  }
String subject
Definition: OpenIdConnectDiscoveryResponse.java:19

メンバ詳解

◆ entity

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

◆ headers

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

◆ links

List<WebFingerLink> org.xdi.oxauth.client.OpenIdConnectDiscoveryResponse.links
private

◆ location

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

◆ status

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

◆ subject

String org.xdi.oxauth.client.OpenIdConnectDiscoveryResponse.subject
private

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