Uses of Class
com.Server.dto.Response.RoleResponse
| Package | Description |
|---|---|
| com.Server.dto.Response |
com.Server.dto.Response has class use to Response data with server.
|
| com.Server.mapper.impl |
com.Server.mapper.impl - mapped dto to entity and reverse.
|
| com.Server.service |
com.Server.service has service used to services on database table available repository interface.
|
| com.Server.service.impl |
com.Server.service.impl has the class witch implement services interface method.
|
-
Uses of RoleResponse in com.Server.dto.Response
Fields in com.Server.dto.Response with type parameters of type RoleResponse Modifier and Type Field Description private java.util.List<RoleResponse>UserResponse. rolesroles -
Uses of RoleResponse in com.Server.mapper.impl
Methods in com.Server.mapper.impl that return RoleResponse Modifier and Type Method Description RoleResponseRoleMapper. toDto(Role role) -
Uses of RoleResponse in com.Server.service
Methods in com.Server.service that return RoleResponse Modifier and Type Method Description RoleResponseRoleService. findById(int id)Find role on id.RoleResponseRoleService. findByName(Roles name)Find role on name.Methods in com.Server.service that return types with arguments of type RoleResponse Modifier and Type Method Description java.util.List<RoleResponse>RoleService. findAll()Method return List of all role. -
Uses of RoleResponse in com.Server.service.impl
Fields in com.Server.service.impl with type parameters of type RoleResponse Modifier and Type Field Description private Mapper<Role,RoleResponse,RoleRequest>RoleServiceImpl. roleMapperrole mapperMethods in com.Server.service.impl that return RoleResponse Modifier and Type Method Description RoleResponseRoleServiceImpl. findById(int id)Find role on id.RoleResponseRoleServiceImpl. findByName(Roles name)Find role on name.Methods in com.Server.service.impl that return types with arguments of type RoleResponse Modifier and Type Method Description java.util.List<RoleResponse>RoleServiceImpl. findAll()Method return List of all role.Constructor parameters in com.Server.service.impl with type arguments of type RoleResponse Constructor Description RoleServiceImpl(RoleRepository roleRepository, Mapper<Role,RoleResponse,RoleRequest> roleMapper)