Uses of Class
com.skava.auth.model.entities.ClientRole
Packages that use ClientRole
Package
Description
Support classes for access controlling, exception handling, session handling and caching.
Models to represent the entity classes.
Data transfer classes for user role to transfer data from service to ClientRoleController.
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 client role.
Support classes for hold the reusable functionalities.
-
Uses of ClientRole in com.skava.auth.helper
Method parameters in com.skava.auth.helper with type arguments of type ClientRoleModifier and TypeMethodDescriptionstatic void
AccessControlHelper.preAuthorizeClient
(String clientId, Long collectionId, Set<ClientRole> existingClientRoles, Set<ClientRoleVO> requestClientRoles, com.skava.core.auth.AuthTokenHandler authTokenHandler, org.springframework.context.MessageSource messageSource) -
Uses of ClientRole in com.skava.auth.model.entities
Methods in com.skava.auth.model.entities with parameters of type ClientRoleModifier and TypeMethodDescriptionboolean
ClientRole.isBusinessIdNotEqual
(ClientRole other) This method is to check the equality of two business identifiers from two different objects, return TRUE if equals else FALSE.boolean
ClientRole.isClientIdNotEqual
(ClientRole other) This method is to check the equality of two client identifiers from two different objects, return TRUE if equals else FALSE.boolean
ClientRole.isCollectionIdNotEqual
(ClientRole other) This method is to check the equality of two collection identifiers from two different objects, return TRUE if equals else FALSE.boolean
ClientRole.isRoleNameNotEqual
(ClientRole other) This method is to check the equality of two roles from two different objects, return TRUE if equals else FALSE.boolean
ClientRole.isServiceCollectionIdNotEqual
(ClientRole role) This method is to check the equality of two service collection identifiers from two different objects, return TRUE if equals else FALSE.boolean
ClientRole.isServiceNotEqual
(ClientRole other) This method is to check the equality of two service names from two different objects, return TRUE if equals else FALSE.boolean
ClientRole.isStoreIdNotEqual
(ClientRole other) This method is to check the equality of two store identifiers from two different objects, return TRUE if equals else FALSE.Constructors in com.skava.auth.model.entities with parameters of type ClientRoleModifierConstructorDescriptionClientRole
(ClientRole matchedClientRole, ClientRole clientRole, Collection collection) Constructor parameters in com.skava.auth.model.entities with type arguments of type ClientRoleModifierConstructorDescriptionQClientRole
(com.querydsl.core.types.Path<? extends ClientRole> path) QClientRole
(Class<? extends ClientRole> type, com.querydsl.core.types.PathMetadata metadata, com.querydsl.core.types.dsl.PathInits inits) -
Uses of ClientRole in com.skava.auth.model.response.clientrole
Constructor parameters in com.skava.auth.model.response.clientrole with type arguments of type ClientRoleModifierConstructorDescriptionClientsRolesResponse
(List<ClientRole> clientRoles, Long count, String responseCode) Instantiates new roles response.ClientsRolesResponse
(List<ClientRole> clientRoles, String responseCode) Instantiates new roles response. -
Uses of ClientRole in com.skava.auth.model.rest.entities
Constructors in com.skava.auth.model.rest.entities with parameters of type ClientRole -
Uses of ClientRole in com.skava.auth.repository
Methods in com.skava.auth.repository that return types with arguments of type ClientRoleModifier and TypeMethodDescriptionClientRoleRepository.findAll
(org.springframework.data.jpa.domain.Specification<ClientRole> clientRoleSpecification) ClientRoleRepository.findAll
(org.springframework.data.jpa.domain.Specification<ClientRole> clientRoleSpecification, org.springframework.data.domain.Sort sort) ClientRoleRepository.findAllByClientId
(String clientId) This method return roles of client in all business.ClientRoleRepository.findAllByClientIdAndBusinessId
(String clientId, Long businessId) This method return roles of client in the business.ClientRoleRepository.findAllByClientIdAndCollectionId
(String clientId, Long collectionId) Method parameters in com.skava.auth.repository with type arguments of type ClientRoleModifier and TypeMethodDescriptionClientRoleRepository.findAll
(org.springframework.data.jpa.domain.Specification<ClientRole> clientRoleSpecification) ClientRoleRepository.findAll
(org.springframework.data.jpa.domain.Specification<ClientRole> clientRoleSpecification, org.springframework.data.domain.Sort sort) -
Uses of ClientRole in com.skava.auth.service.impl.clientrole
Methods in com.skava.auth.service.impl.clientrole that return types with arguments of type ClientRoleModifier and TypeMethodDescriptionGetClientRolesServiceImpl.getClientRole
(String clientId, Long collectionId) This method is used to retrieve the roles of the client.AddRolesToClientsServiceImpl.saveAllClientAttribute
(List<ClientRole> clientRoles) This method saves the all the client role details into the database.Method parameters in com.skava.auth.service.impl.clientrole with type arguments of type ClientRoleModifier and TypeMethodDescriptionAddRolesToClientsServiceImpl.saveAllClientAttribute
(List<ClientRole> clientRoles) This method saves the all the client role details into the database. -
Uses of ClientRole in com.skava.auth.util
Methods in com.skava.auth.util that return ClientRoleModifier and TypeMethodDescriptionstatic ClientRole
ClientRoleUtil.getMatchedClientRole
(Set<ClientRole> clientRoles, ClientRole requestClientRole) This method return the matched client role from the set.Methods in com.skava.auth.util that return types with arguments of type ClientRoleModifier and TypeMethodDescriptionstatic List<ClientRole>
ClientRoleUtil.searchClientRolesByClientId
(String sort, org.springframework.data.jpa.domain.Specification<ClientRole> clientRoleSpecification, ClientRoleRepository clientRoleRepository, org.springframework.context.MessageSource messageSource) Methods in com.skava.auth.util with parameters of type ClientRoleModifier and TypeMethodDescriptionstatic ClientRole
ClientRoleUtil.getMatchedClientRole
(Set<ClientRole> clientRoles, ClientRole requestClientRole) This method return the matched client role from the set.Method parameters in com.skava.auth.util with type arguments of type ClientRoleModifier and TypeMethodDescriptionstatic jakarta.persistence.criteria.Predicate
ClientRoleUtil.addClientIdsPredicate
(jakarta.persistence.criteria.Predicate clientRoleSearchPredicate, List<String> resultClientIds, jakarta.persistence.criteria.Root<ClientRole> root, jakarta.persistence.criteria.CriteriaBuilder criteriaBuilder) static jakarta.persistence.criteria.Predicate
ClientRoleUtil.getClientRoleSearchPredicate
(Long collectionId, List<SearchCriteria> params, jakarta.persistence.criteria.Root<ClientRole> root, jakarta.persistence.criteria.CriteriaBuilder builder) This method is used to search auth group.static List<jakarta.persistence.Tuple>
ClientRoleUtil.getDistinctClientIds
(int page, int size, jakarta.persistence.criteria.CriteriaQuery<jakarta.persistence.Tuple> selectDistinctClientQuery, jakarta.persistence.criteria.Root<ClientRole> root, jakarta.persistence.criteria.Predicate clientRoleSearchPredicate, jakarta.persistence.EntityManager entityManager) static ClientRole
ClientRoleUtil.getMatchedClientRole
(Set<ClientRole> clientRoles, ClientRole requestClientRole) This method return the matched client role from the set.static List<ClientRole>
ClientRoleUtil.searchClientRolesByClientId
(String sort, org.springframework.data.jpa.domain.Specification<ClientRole> clientRoleSpecification, ClientRoleRepository clientRoleRepository, org.springframework.context.MessageSource messageSource)