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 PermissionRolePermission.permissionThe 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 ofPermissionobjects into a set ofRolePermissionobjects associated with this Role.voidRole.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 aPermissionRequestDTOto aPermissionentity.Methods in com.alpaca.mapper.impl with parameters of type PermissionModifier and TypeMethodDescriptionPermissionMapperImpl.toResponseDTO(Permission entity) Maps aPermissionentity to aPermissionResponseDTO.Method parameters in com.alpaca.mapper.impl with type arguments of type PermissionModifier and TypeMethodDescriptionPermissionMapperImpl.toListResponseDTO(Collection<Permission> entities) Maps a collection ofPermissionentities 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 existingPermissionidentified by the given ID with the non-null and non-blank values from the providedpermissionobject.Methods in com.alpaca.persistence.impl that return types with arguments of type PermissionModifier and TypeMethodDescriptionPermissionDAOImpl.findByPermissionName(String permissionName) Searches for aPermissionentity by its permission name.protected Class<Permission> PermissionDAOImpl.getEntity()Returns thePermissionentity 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 TypeMethodDescriptionbooleanPermissionDAOImpl.existsByUniqueProperties(Permission permission) Determines whether a permission with the same name already exists.PermissionDAOImpl.updateById(Permission permission, UUID id) Updates an existingPermissionidentified by the given ID with the non-null and non-blank values from the providedpermissionobject. -
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.