mitreid-connect
公開メンバ関数 | 全メンバ一覧
org.mitre.openid.connect.repository.WhitelistedSiteRepository インタフェース
org.mitre.openid.connect.repository.WhitelistedSiteRepository の継承関係図
Inheritance graph
org.mitre.openid.connect.repository.WhitelistedSiteRepository 連携図
Collaboration graph

公開メンバ関数

Collection< WhitelistedSitegetAll ()
 
WhitelistedSite getById (Long id)
 
WhitelistedSite getByClientId (String clientId)
 
Collection< WhitelistedSitegetByCreator (String creatorId)
 
void remove (WhitelistedSite whitelistedSite)
 
WhitelistedSite save (WhitelistedSite whiteListedSite)
 
WhitelistedSite update (WhitelistedSite oldWhitelistedSite, WhitelistedSite whitelistedSite)
 

詳解

WhitelistedSite repository interface

著者
Michael Joseph Walsh, aanganes

関数詳解

◆ getAll()

Collection<WhitelistedSite> org.mitre.openid.connect.repository.WhitelistedSiteRepository.getAll ( )

Return a collection of all WhitelistedSite managed by this repository

戻り値
the WhitelistedSite collection, or null

org.mitre.openid.connect.repository.impl.JpaWhitelistedSiteRepositoryで実装されています。

◆ getByClientId()

WhitelistedSite org.mitre.openid.connect.repository.WhitelistedSiteRepository.getByClientId ( String  clientId)

Find a WhitelistedSite by its associated ClientDetails reference

引数
clientthe Relying Party
戻り値
the corresponding WhitelistedSite if one exists for the RP, or null

org.mitre.openid.connect.repository.impl.JpaWhitelistedSiteRepositoryで実装されています。

◆ getByCreator()

Collection<WhitelistedSite> org.mitre.openid.connect.repository.WhitelistedSiteRepository.getByCreator ( String  creatorId)

Return a collection of the WhitelistedSites created by a given user

引数
creatorthe id of the admin who may have created some WhitelistedSites
戻り値
the collection of corresponding WhitelistedSites, if any, or null

org.mitre.openid.connect.repository.impl.JpaWhitelistedSiteRepositoryで実装されています。

◆ getById()

WhitelistedSite org.mitre.openid.connect.repository.WhitelistedSiteRepository.getById ( Long  id)

Returns the WhitelistedSite for the given id

引数
idid the id of the WhitelistedSite
戻り値
a valid WhitelistedSite if it exists, null otherwise

org.mitre.openid.connect.repository.impl.JpaWhitelistedSiteRepositoryで実装されています。

◆ remove()

void org.mitre.openid.connect.repository.WhitelistedSiteRepository.remove ( WhitelistedSite  whitelistedSite)

Removes the given IdToken from the repository

引数
whitelistedSitethe WhitelistedSite object to remove

org.mitre.openid.connect.repository.impl.JpaWhitelistedSiteRepositoryで実装されています。

◆ save()

WhitelistedSite org.mitre.openid.connect.repository.WhitelistedSiteRepository.save ( WhitelistedSite  whiteListedSite)

Persists a WhitelistedSite

引数
whitelistedSite
戻り値

org.mitre.openid.connect.repository.impl.JpaWhitelistedSiteRepositoryで実装されています。

◆ update()

WhitelistedSite org.mitre.openid.connect.repository.WhitelistedSiteRepository.update ( WhitelistedSite  oldWhitelistedSite,
WhitelistedSite  whitelistedSite 
)

Persist changes to a whitelistedSite. The ID of oldWhitelistedSite is retained.

引数
oldWhitelistedSite
whitelistedSite
戻り値

org.mitre.openid.connect.repository.impl.JpaWhitelistedSiteRepositoryで実装されています。


このインタフェース詳解は次のファイルから抽出されました: