Uses of Class
com.skava.auth.model.entities.AuthGroup
Packages that use AuthGroup
Package
Description
Models to represent the entity classes.
Data transfer classes for authorization group to transfer data from service to AuthGroupController.
Data transfer classes for entities to hold the entity related informations.
Repository classes to represent the data access layer of the entities.
Support classes for hold the reusable functionalities.
-
Uses of AuthGroup in com.skava.auth.model.entities
Fields in com.skava.auth.model.entities with type parameters of type AuthGroupModifier and TypeFieldDescriptionfinal com.querydsl.core.types.dsl.SetPath<AuthGroup,
QAuthGroup> QRole.groups
Constructor parameters in com.skava.auth.model.entities with type arguments of type AuthGroupModifierConstructorDescriptionQAuthGroup
(com.querydsl.core.types.Path<? extends AuthGroup> path) QAuthGroup
(Class<? extends AuthGroup> type, com.querydsl.core.types.PathMetadata metadata, com.querydsl.core.types.dsl.PathInits inits) -
Uses of AuthGroup in com.skava.auth.model.response.authgroup
Constructors in com.skava.auth.model.response.authgroup with parameters of type AuthGroupModifierConstructorDescriptionAuthGroupResponse
(String responseCode, AuthGroup group) Instantiates new auth group response.Constructor parameters in com.skava.auth.model.response.authgroup with type arguments of type AuthGroupModifierConstructorDescriptionAuthGroupsResponse
(String responseCode, List<AuthGroup> groups) Instantiates a new auth group response. -
Uses of AuthGroup in com.skava.auth.model.rest.entities
Constructors in com.skava.auth.model.rest.entities with parameters of type AuthGroupModifierConstructorDescriptionAuthGroupVO
(AuthGroup group) Construct aAuthGroupVO
object by parsing data fromAuthGroup
object. -
Uses of AuthGroup in com.skava.auth.repository
Methods in com.skava.auth.repository that return types with arguments of type AuthGroupModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<AuthGroup>
AuthGroupRepository.findAllByCollectionId
(Long collectionId, org.springframework.data.domain.Pageable pageable) Service definition to find auth group by collection idAuthGroupRepository.findAllByCollectionIdAndUserids
(Long collectionId, Long userIds) Service definition to find auth group by collection id and user id.AuthGroupRepository.findAllByCollectionIdAndUseridsIn
(Long collectionId, Set<Long> userIds) Service definition to find auth group by collection id and user id.AuthGroupRepository.findAllByUserids
(Long userIds) Service definition to find auth group by user ids.AuthGroupRepository.findAllByUseridsIn
(Set<Long> userIds) Service definition to find auth group by user ids. -
Uses of AuthGroup in com.skava.auth.util
Methods in com.skava.auth.util that return AuthGroupModifier and TypeMethodDescriptionstatic AuthGroup
AuthGroupUtil.createAuthGroup
(AuthGroupVO authGroup, AuthGroupRepository authGroupRepository) This method create a new AuthGroup with given details.static AuthGroup
AuthGroupUtil.getAuthGroup
(Long authGroupId, AuthGroupRepository authGroupRepository) static AuthGroup
AuthGroupUtil.updateAuthGroup
(AuthGroup authGroup, AuthGroupRepository authGroupRepository) static AuthGroup
AuthGroupUtil.updateAuthGroup
(String name, String description, AuthGroup authGroup, AuthGroupRepository authGroupRepository) Methods in com.skava.auth.util that return types with arguments of type AuthGroupModifier and TypeMethodDescriptionAuthGroupUtil.searchAuthGroups
(String filter, long collectionId, int offset, int limit, jakarta.persistence.EntityManager entityManager) Methods in com.skava.auth.util with parameters of type AuthGroupModifier and TypeMethodDescriptionstatic void
AuthGroupUtil.deleteAuthGroup
(AuthGroup authGroup, AuthGroupRepository authGroupRepository) static AuthGroup
AuthGroupUtil.updateAuthGroup
(AuthGroup authGroup, AuthGroupRepository authGroupRepository) static AuthGroup
AuthGroupUtil.updateAuthGroup
(String name, String description, AuthGroup authGroup, AuthGroupRepository authGroupRepository)