Uses of Class
com.alpaca.entity.Permission
Packages that use Permission
Package
Description
-
Uses of Permission in com.alpaca.entity
Fields in com.alpaca.entity declared as PermissionModifier and TypeFieldDescriptionprivate Permission
RolePermission.permission
The Permission associated with this RolePermission.Methods in com.alpaca.entity that return types with arguments of type PermissionModifier and TypeMethodDescriptionRole.getPermissions()
Retrieves the list of permissions assigned to this Role.Method parameters in com.alpaca.entity with type arguments of type PermissionModifier and TypeMethodDescriptionRole.permissionsToRolePermissions
(Collection<Permission> permissions) Converts a set ofPermission
objects into a set ofRolePermission
objects associated with this Role.void
Role.setRolePermissions
(Collection<Permission> permissions) Constructors in com.alpaca.entity with parameters of type PermissionModifierConstructorDescriptionRolePermission
(Role role, Permission permission) Constructs an instance of a new RolePermission object with the specified attributes.Constructor parameters in com.alpaca.entity with type arguments of type PermissionModifierConstructorDescriptionRole
(String roleName, String roleDescription, Set<Permission> permissions) Constructs an instance of a new Role object with the specified attributes. -
Uses of Permission in com.alpaca.mapper.impl
Methods in com.alpaca.mapper.impl that return PermissionModifier and TypeMethodDescriptionPermissionMapperImpl.toEntity
(PermissionRequestDTO requestDTO) Converts aPermissionRequestDTO
to aPermission
entity.Methods in com.alpaca.mapper.impl with parameters of type PermissionModifier and TypeMethodDescriptionPermissionMapperImpl.toResponseDTO
(Permission entity) Maps aPermission
entity to aPermissionResponseDTO
.Method parameters in com.alpaca.mapper.impl with type arguments of type PermissionModifier and TypeMethodDescriptionPermissionMapperImpl.toListResponseDTO
(Collection<Permission> entities) Maps a collection ofPermission
entities into a list ofPermissionResponseDTO
. -
Uses of Permission in com.alpaca.persistence
Methods in com.alpaca.persistence that return types with arguments of type Permission -
Uses of Permission in com.alpaca.persistence.impl
Methods in com.alpaca.persistence.impl that return PermissionModifier and TypeMethodDescriptionPermissionDAOImpl.updateById
(Permission permission, UUID id) Updates an existingPermission
identified by the given ID with the non-null and non-blank values from the providedpermission
object.Methods in com.alpaca.persistence.impl that return types with arguments of type PermissionModifier and TypeMethodDescriptionPermissionDAOImpl.findByPermissionName
(String permissionName) Searches for aPermission
entity by its permission name.protected Class
<Permission> PermissionDAOImpl.getEntity()
Returns thePermission
entity class managed by this DAO.protected GenericRepo
<Permission, UUID> PermissionDAOImpl.getRepo()
Provides the repository used by the generic DAO framework.Methods in com.alpaca.persistence.impl with parameters of type PermissionModifier and TypeMethodDescriptionboolean
PermissionDAOImpl.existsByUniqueProperties
(Permission permission) Determines whether a permission with the same name already exists.PermissionDAOImpl.updateById
(Permission permission, UUID id) Updates an existingPermission
identified by the given ID with the non-null and non-blank values from the providedpermission
object. -
Uses of Permission in com.alpaca.repository
Methods in com.alpaca.repository that return types with arguments of type PermissionModifier and TypeMethodDescriptionPermissionRepo.findByPermissionName
(String permissionName) Retrieves a permission by their permission name. -
Uses of Permission in com.alpaca.service.impl
Methods in com.alpaca.service.impl that return types with arguments of type PermissionModifier and TypeMethodDescriptionprotected IGenericDAO
<Permission, UUID> PermissionServiceImpl.getDAO()
Provides the generic DAO used by inherited service methods.