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 |
---|---|
List<OAuth2AccessTokenEntity> |
JpaOAuth2TokenRepository.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 |
JpaApprovedSiteRepository.getById(Long id) |
ApprovedSite |
JpaApprovedSiteRepository.save(ApprovedSite approvedSite) |
Modifier and Type | Method and Description |
---|---|
Collection<ApprovedSite> |
JpaApprovedSiteRepository.getAll() |
Collection<ApprovedSite> |
JpaApprovedSiteRepository.getByClientId(String clientId) |
Collection<ApprovedSite> |
JpaApprovedSiteRepository.getByClientIdAndUserId(String clientId,
String userId) |
Collection<ApprovedSite> |
JpaApprovedSiteRepository.getByUserId(String userId) |
Modifier and Type | Method and Description |
---|---|
void |
JpaApprovedSiteRepository.remove(ApprovedSite approvedSite) |
ApprovedSite |
JpaApprovedSiteRepository.save(ApprovedSite 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
|
Modifier and Type | Method and Description |
---|---|
ApprovedSite |
DefaultApprovedSiteService.createApprovedSite(String clientId,
String userId,
Date timeoutDate,
Set<String> allowedScopes) |
ApprovedSite |
DefaultApprovedSiteService.getById(Long id) |
ApprovedSite |
DefaultApprovedSiteService.save(ApprovedSite approvedSite) |
Modifier and Type | Method and Description |
---|---|
Collection<ApprovedSite> |
DefaultApprovedSiteService.getAll() |
Collection<ApprovedSite> |
DefaultApprovedSiteService.getByClientId(String clientId) |
Collection<ApprovedSite> |
DefaultApprovedSiteService.getByClientIdAndUserId(String clientId,
String userId) |
Collection<ApprovedSite> |
DefaultApprovedSiteService.getByUserId(String userId) |
Modifier and Type | Method and Description |
---|---|
List<OAuth2AccessTokenEntity> |
DefaultApprovedSiteService.getApprovedAccessTokens(ApprovedSite approvedSite) |
void |
DefaultApprovedSiteService.remove(ApprovedSite approvedSite) |
ApprovedSite |
DefaultApprovedSiteService.save(ApprovedSite approvedSite) |
Copyright © 2018. All rights reserved.