Uses of Class
com.Server.dto.Request.LocalizationRequest
| Package | Description |
|---|---|
| com.Server.controller |
com.Server.controller has all controller use to support client by http protocol.
|
| 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 LocalizationRequest in com.Server.controller
Methods in com.Server.controller with parameters of type LocalizationRequest Modifier and Type Method Description org.springframework.http.ResponseEntity<?>LocalizationController. addCity(LocalizationRequest localizationRequest)This method add new localization. -
Uses of LocalizationRequest in com.Server.mapper.impl
Methods in com.Server.mapper.impl with parameters of type LocalizationRequest Modifier and Type Method Description LocalizationLocalizationMapper. toEntity(LocalizationRequest localizationRequest)LocalizationLocalizationMapper. update(Localization localization, LocalizationRequest localizationRequest) -
Uses of LocalizationRequest in com.Server.service
Methods in com.Server.service with parameters of type LocalizationRequest Modifier and Type Method Description voidLocalizationService. save(LocalizationRequest localizationRequest)Save new localization. -
Uses of LocalizationRequest in com.Server.service.impl
Fields in com.Server.service.impl with type parameters of type LocalizationRequest Modifier and Type Field Description private Mapper<Localization,LocalizationResponse,LocalizationRequest>LocalizationServiceImpl. localizationMapperMethods in com.Server.service.impl with parameters of type LocalizationRequest Modifier and Type Method Description voidLocalizationServiceImpl. save(LocalizationRequest localizationRequest)Save new localization.Constructor parameters in com.Server.service.impl with type arguments of type LocalizationRequest Constructor Description LocalizationServiceImpl(LocalizationRepository localizationRepository, Mapper<Localization,LocalizationResponse,LocalizationRequest> localizationMapper)