Uses of Class
com.Server.dto.Response.LocalizationResponse
| Package | Description |
|---|---|
| com.Server.controller |
com.Server.controller has all controller use to support client by http protocol.
|
| 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 LocalizationResponse in com.Server.controller
Methods in com.Server.controller that return types with arguments of type LocalizationResponse Modifier and Type Method Description org.springframework.http.ResponseEntity<java.util.List<LocalizationResponse>>LocalizationController. showAll()This method get all localization. -
Uses of LocalizationResponse in com.Server.dto.Response
Fields in com.Server.dto.Response declared as LocalizationResponse Modifier and Type Field Description private LocalizationResponseCarResponse. localizationlocalizationprivate LocalizationResponseReservationResponse. localizationEndlocalization endprivate LocalizationResponseReservationResponse. localizationStartlocalization startFields in com.Server.dto.Response with type parameters of type LocalizationResponse Modifier and Type Field Description private java.util.List<LocalizationResponse>JwtResponse. localizationsList LocalizationConstructor parameters in com.Server.dto.Response with type arguments of type LocalizationResponse Constructor Description JwtResponse(java.lang.String token, java.lang.Long id, java.lang.String username, java.lang.String email, java.util.List<LocalizationResponse> localizations, java.util.List<java.lang.String> roles) -
Uses of LocalizationResponse in com.Server.mapper.impl
Methods in com.Server.mapper.impl that return LocalizationResponse Modifier and Type Method Description LocalizationResponseLocalizationMapper. toDto(Localization localization) -
Uses of LocalizationResponse in com.Server.service
Methods in com.Server.service that return LocalizationResponse Modifier and Type Method Description LocalizationResponseLocalizationService. findByCity(java.lang.String city)Find city on name cityLocalizationResponseLocalizationService. findByIdLocalization(long id)Find car on id.Methods in com.Server.service that return types with arguments of type LocalizationResponse Modifier and Type Method Description java.util.List<LocalizationResponse>LocalizationService. findAll()Find all localization. -
Uses of LocalizationResponse in com.Server.service.impl
Fields in com.Server.service.impl with type parameters of type LocalizationResponse Modifier and Type Field Description private Mapper<Localization,LocalizationResponse,LocalizationRequest>LocalizationServiceImpl. localizationMapperMethods in com.Server.service.impl that return LocalizationResponse Modifier and Type Method Description LocalizationResponseLocalizationServiceImpl. findByCity(java.lang.String city)Find city on name cityLocalizationResponseLocalizationServiceImpl. findByIdLocalization(long id)Find car on id.Methods in com.Server.service.impl that return types with arguments of type LocalizationResponse Modifier and Type Method Description java.util.List<LocalizationResponse>LocalizationServiceImpl. findAll()Find all localization.Constructor parameters in com.Server.service.impl with type arguments of type LocalizationResponse Constructor Description LocalizationServiceImpl(LocalizationRepository localizationRepository, Mapper<Localization,LocalizationResponse,LocalizationRequest> localizationMapper)