Package | Description |
---|---|
org.mitre.oauth2.model | |
org.mitre.oauth2.repository | |
org.mitre.openid.connect.repository | |
org.mitre.openid.connect.service |
Modifier and Type | Method and Description |
---|---|
ApprovedSite |
OAuth2AccessTokenEntity.getApprovedSite() |
Modifier and Type | Method and Description |
---|---|
void |
OAuth2AccessTokenEntity.setApprovedSite(ApprovedSite approvedSite) |
Modifier and Type | Method and Description |
---|---|
List<OAuth2AccessTokenEntity> |
OAuth2TokenRepository.getAccessTokensForApprovedSite(ApprovedSite approvedSite) |
Modifier and Type | Method and Description |
---|---|
ApprovedSite |
ApprovedSiteRepository.getById(Long id)
Returns the ApprovedSite for the given id
|
ApprovedSite |
ApprovedSiteRepository.save(ApprovedSite approvedSite)
Persists an ApprovedSite
|
Modifier and Type | Method and Description |
---|---|
Collection<ApprovedSite> |
ApprovedSiteRepository.getAll()
Return a collection of all ApprovedSites managed by this repository
|
Collection<ApprovedSite> |
ApprovedSiteRepository.getByClientId(String clientId)
Get all sites associated with this client
|
Collection<ApprovedSite> |
ApprovedSiteRepository.getByClientIdAndUserId(String clientId,
String userId)
Return a collection of ApprovedSite managed by this repository matching the
provided client ID and user ID
|
Collection<ApprovedSite> |
ApprovedSiteRepository.getByUserId(String userId)
Get all sites approved by this user
|
Modifier and Type | Method and Description |
---|---|
void |
ApprovedSiteRepository.remove(ApprovedSite approvedSite)
Removes the given ApprovedSite from the repository
|
ApprovedSite |
ApprovedSiteRepository.save(ApprovedSite approvedSite)
Persists an ApprovedSite
|
Modifier and Type | Method and Description |
---|---|
ApprovedSite |
ApprovedSiteService.createApprovedSite(String clientId,
String userId,
Date timeoutDate,
Set<String> allowedScopes) |
ApprovedSite |
ApprovedSiteService.getById(Long id)
Get ApprovedSite for id
|
ApprovedSite |
ApprovedSiteService.save(ApprovedSite approvedSite)
Save an ApprovedSite
|
Modifier and Type | Method and Description |
---|---|
Collection<ApprovedSite> |
ApprovedSiteService.getAll()
Return a collection of all ApprovedSites
|
Collection<ApprovedSite> |
ApprovedSiteService.getByClientId(String clientId)
Get all sites associated with this client
|
Collection<ApprovedSite> |
ApprovedSiteService.getByClientIdAndUserId(String clientId,
String userId)
Return a collection of ApprovedSite managed by this repository matching the
provided client ID and user ID
|
Collection<ApprovedSite> |
ApprovedSiteService.getByUserId(String userId)
Get all sites approved by this user
|
Modifier and Type | Method and Description |
---|---|
List<OAuth2AccessTokenEntity> |
ApprovedSiteService.getApprovedAccessTokens(ApprovedSite approvedSite)
Return all approved access tokens for the site.
|
void |
ApprovedSiteService.remove(ApprovedSite approvedSite)
Remove the ApprovedSite
|
ApprovedSite |
ApprovedSiteService.save(ApprovedSite approvedSite)
Save an ApprovedSite
|
Copyright © 2022. All rights reserved.