Uses of Record Class
com.alpaca.dto.response.PermissionResponseDTO
Packages that use PermissionResponseDTO
-
Uses of PermissionResponseDTO in com.alpaca.controller
Methods in com.alpaca.controller that return types with arguments of type PermissionResponseDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<List<PermissionResponseDTO>> PermissionController.findAll()
Retrieves allPermissionResponseDTO
entities.org.springframework.http.ResponseEntity
<org.springframework.data.web.PagedModel<PermissionResponseDTO>> PermissionController.findAllPage
(org.springframework.data.domain.Pageable pageable) Retrieves a paginated list ofPermissionResponseDTO
entities.org.springframework.http.ResponseEntity
<PermissionResponseDTO> Retrieves aPermissionResponseDTO
by its unique identifier.org.springframework.http.ResponseEntity
<PermissionResponseDTO> PermissionController.save
(@Valid PermissionRequestDTO request) Creates a newPermission
.org.springframework.http.ResponseEntity
<PermissionResponseDTO> PermissionController.updateById
(@Valid PermissionRequestDTO request, UUID id) Updates an existingPermission
identified by its unique identifier. -
Uses of PermissionResponseDTO in com.alpaca.dto.response
Fields in com.alpaca.dto.response with type parameters of type PermissionResponseDTOModifier and TypeFieldDescriptionprivate final List
<PermissionResponseDTO> RoleResponseDTO.permissions
The field for thepermissions
record component.Methods in com.alpaca.dto.response that return types with arguments of type PermissionResponseDTOModifier and TypeMethodDescriptionRoleResponseDTO.permissions()
Returns the value of thepermissions
record component.Constructor parameters in com.alpaca.dto.response with type arguments of type PermissionResponseDTOModifierConstructorDescriptionRoleResponseDTO
(UUID id, String roleName, String roleDescription, List<PermissionResponseDTO> permissions) Creates an instance of aRoleResponseDTO
record class. -
Uses of PermissionResponseDTO in com.alpaca.mapper.impl
Methods in com.alpaca.mapper.impl that return PermissionResponseDTOModifier and TypeMethodDescriptionPermissionMapperImpl.toResponseDTO
(Permission entity) Maps aPermission
entity to aPermissionResponseDTO
.Methods in com.alpaca.mapper.impl that return types with arguments of type PermissionResponseDTOModifier and TypeMethodDescriptionPermissionMapperImpl.toListResponseDTO
(Collection<Permission> entities) Maps a collection ofPermission
entities into a list ofPermissionResponseDTO
.