Class GeocodingAuthTokenService
java.lang.Object
overit.geocallapp.utilities.rs.common.PrivateService
overit.geocallapp.wfm.mobile.core.rs3.geocodingauthtoken.GeocodingAuthTokenService
@RestController
@RequestMapping("mobile/r3/geocodingauthtoken")
@Resource(logging=true)
public class GeocodingAuthTokenService
extends PrivateService
Services that manage authentication to a provider.
- Since:
- 19.0
- GCApi:
- rest
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<DTOGeocodingAuthToken> post(@Valid DTOInputGeocodingAuthToken input) Retrieve the authentication token.
-
Constructor Details
-
GeocodingAuthTokenService
public GeocodingAuthTokenService()
-
-
Method Details
-
post
@PostMapping(consumes="application/json", produces="application/json") public org.springframework.http.ResponseEntity<DTOGeocodingAuthToken> post(@RequestBody @Valid @Valid DTOInputGeocodingAuthToken input) throws DAValidateException Retrieve the authentication token.- Parameters:
input- the input dtoDTOInputGeocodingAuthToken- Returns:
- return authentication token to the requested provider
DTOGeocodingAuthToken - Throws:
DAValidateException- the DA validate exception
-