mitreid-connect
公開メンバ関数 | 静的公開変数類 | 非公開変数類 | 全メンバ一覧
org.mitre.openid.connect.model.WhitelistedSite クラス
org.mitre.openid.connect.model.WhitelistedSite 連携図
Collaboration graph

公開メンバ関数

 WhitelistedSite ()
 
Long getId ()
 
void setId (Long id)
 
String getClientId ()
 
void setClientId (String clientId)
 
Set< String > getAllowedScopes ()
 
void setAllowedScopes (Set< String > allowedScopes)
 
String getCreatorUserId ()
 
void setCreatorUserId (String creatorUserId)
 

静的公開変数類

static final String QUERY_BY_CREATOR = "WhitelistedSite.getByCreatoruserId"
 
static final String QUERY_BY_CLIENT_ID = "WhitelistedSite.getByClientId"
 
static final String QUERY_ALL = "WhitelistedSite.getAll"
 
static final String PARAM_USER_ID = "userId"
 
static final String PARAM_CLIENT_ID = "clientId"
 

非公開変数類

Long id
 
String creatorUserId
 
String clientId
 
Set< String > allowedScopes
 

詳解

Indicator that login to a site should be automatically granted without user interaction.

著者
jricher, aanganes

構築子と解体子

◆ WhitelistedSite()

org.mitre.openid.connect.model.WhitelistedSite.WhitelistedSite ( )
inline

Empty constructor

74  {
75 
76  }

関数詳解

◆ getAllowedScopes()

Set<String> org.mitre.openid.connect.model.WhitelistedSite.getAllowedScopes ( )
inline
戻り値
the allowedScopes
120  {
121  return allowedScopes;
122  }
Set< String > allowedScopes
Definition: WhitelistedSite.java:69

◆ getClientId()

String org.mitre.openid.connect.model.WhitelistedSite.getClientId ( )
inline
戻り値
the clientId
100  {
101  return clientId;
102  }
String clientId
Definition: WhitelistedSite.java:65

◆ getCreatorUserId()

String org.mitre.openid.connect.model.WhitelistedSite.getCreatorUserId ( )
inline
133  {
134  return creatorUserId;
135  }
String creatorUserId
Definition: WhitelistedSite.java:62

◆ getId()

Long org.mitre.openid.connect.model.WhitelistedSite.getId ( )
inline
戻り値
the id
84  {
85  return id;
86  }
Long id
Definition: WhitelistedSite.java:59

◆ setAllowedScopes()

void org.mitre.openid.connect.model.WhitelistedSite.setAllowedScopes ( Set< String >  allowedScopes)
inline
引数
allowedScopesthe allowedScopes to set
127  {
129  }
Set< String > allowedScopes
Definition: WhitelistedSite.java:69

◆ setClientId()

void org.mitre.openid.connect.model.WhitelistedSite.setClientId ( String  clientId)
inline
引数
clientIdthe clientId to set
107  {
108  this.clientId = clientId;
109  }
String clientId
Definition: WhitelistedSite.java:65

◆ setCreatorUserId()

void org.mitre.openid.connect.model.WhitelistedSite.setCreatorUserId ( String  creatorUserId)
inline
137  {
139  }
String creatorUserId
Definition: WhitelistedSite.java:62

◆ setId()

void org.mitre.openid.connect.model.WhitelistedSite.setId ( Long  id)
inline
引数
idthe id to set
91  {
92  this.id = id;
93  }
Long id
Definition: WhitelistedSite.java:59

メンバ詳解

◆ allowedScopes

Set<String> org.mitre.openid.connect.model.WhitelistedSite.allowedScopes
private

◆ clientId

String org.mitre.openid.connect.model.WhitelistedSite.clientId
private

◆ creatorUserId

String org.mitre.openid.connect.model.WhitelistedSite.creatorUserId
private

◆ id

Long org.mitre.openid.connect.model.WhitelistedSite.id
private

◆ PARAM_CLIENT_ID

final String org.mitre.openid.connect.model.WhitelistedSite.PARAM_CLIENT_ID = "clientId"
static

◆ PARAM_USER_ID

final String org.mitre.openid.connect.model.WhitelistedSite.PARAM_USER_ID = "userId"
static

◆ QUERY_ALL

final String org.mitre.openid.connect.model.WhitelistedSite.QUERY_ALL = "WhitelistedSite.getAll"
static

◆ QUERY_BY_CLIENT_ID

final String org.mitre.openid.connect.model.WhitelistedSite.QUERY_BY_CLIENT_ID = "WhitelistedSite.getByClientId"
static

◆ QUERY_BY_CREATOR

final String org.mitre.openid.connect.model.WhitelistedSite.QUERY_BY_CREATOR = "WhitelistedSite.getByCreatoruserId"
static

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