Uses of Class
com.skava.auth.model.entities.OAuthClient
Packages that use OAuthClient
Package
Description
Models to represent the entity classes.
Data transfer classes for
OAuthClient
to transfer data from service
to OAuthClientController.Data transfer classes for entities to hold the entity related informations.
Repository classes to represent the data access layer of the entities.
Implementation classes to represent the service layer implementations of the collection.
Support classes for hold the reusable functionalities.
-
Uses of OAuthClient in com.skava.auth.model.entities
Constructors in com.skava.auth.model.entities with parameters of type OAuthClientModifierConstructorDescriptionClientSecret
(OAuthClient oAuthClient) This constructor construct the ClientSecret for client.ClientSecret
(Long secretId, OAuthClient oAuthClient) This constructor construct the ClientSecret for existing client with new secret key.Constructor parameters in com.skava.auth.model.entities with type arguments of type OAuthClientModifierConstructorDescriptionQOAuthClient
(com.querydsl.core.types.Path<? extends OAuthClient> path) QOAuthClient
(Class<? extends OAuthClient> type, com.querydsl.core.types.PathMetadata metadata, com.querydsl.core.types.dsl.PathInits inits) -
Uses of OAuthClient in com.skava.auth.model.response.oauthclient
Constructor parameters in com.skava.auth.model.response.oauthclient with type arguments of type OAuthClientModifierConstructorDescriptionOAuthClientsResponse
(List<OAuthClient> oAuthClients, PageableInfo pageableInfo, String domainPrefix) Instantiates new client response. -
Uses of OAuthClient in com.skava.auth.model.rest.entities
Constructors in com.skava.auth.model.rest.entities with parameters of type OAuthClient -
Uses of OAuthClient in com.skava.auth.repository
Methods in com.skava.auth.repository that return OAuthClientModifier and TypeMethodDescriptionOAuthClientRepository.findByClientId
(String clientId) OAuthClientRepository.findByClientIdAndCollectionId
(String clientId, Long collectionId) This method returns the OAuthClient by querying the database by client id and collection id.Methods in com.skava.auth.repository that return types with arguments of type OAuthClientModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<OAuthClient>
OAuthClientRepository.findAllByCollectionId
(Long collectionId, org.springframework.data.domain.Pageable pageable) Service definition to find client by collection id -
Uses of OAuthClient in com.skava.auth.service.impl.outhclient
Methods in com.skava.auth.service.impl.outhclient that return OAuthClientModifier and TypeMethodDescriptionUpdateOAuthClientServiceImpl.update
(OAuthClientVO input, Boolean isRefresh) -
Uses of OAuthClient in com.skava.auth.util
Methods in com.skava.auth.util with parameters of type OAuthClientModifier and TypeMethodDescriptionstatic String
OAuthUtil.createIdToken
(String issuer, org.springframework.security.core.Authentication authentication, AuthorizationRequestVO authorizationRequest, OAuthClient oAuthClient, Long clientTokenExpireTime, org.springframework.context.MessageSource messageSource) This method creates the id_token for the user who wishes to access the client application.static void
OAuthKeyUtil.generateClientSecret
(OAuthClient oAuthClient) generateClientSecret - This function is used to generate the client secret for new client application.