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 allPermissionResponseDTOentities.org.springframework.http.ResponseEntity<org.springframework.data.web.PagedModel<PermissionResponseDTO>> PermissionController.findAllPage(org.springframework.data.domain.Pageable pageable) Retrieves a paginated list ofPermissionResponseDTOentities.org.springframework.http.ResponseEntity<PermissionResponseDTO> Retrieves aPermissionResponseDTOby 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 existingPermissionidentified 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.permissionsThe field for thepermissionsrecord component.Methods in com.alpaca.dto.response that return types with arguments of type PermissionResponseDTOModifier and TypeMethodDescriptionRoleResponseDTO.permissions()Returns the value of thepermissionsrecord 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 aRoleResponseDTOrecord class. -
Uses of PermissionResponseDTO in com.alpaca.mapper.impl
Methods in com.alpaca.mapper.impl that return PermissionResponseDTOModifier and TypeMethodDescriptionPermissionMapperImpl.toResponseDTO(Permission entity) Maps aPermissionentity 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 ofPermissionentities into a list ofPermissionResponseDTO.