com.afrigis.services.token.TokenResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core Java library to ease use of AfriGIS Services
package com.afrigis.services.token;
import com.afrigis.services.Response;
/**
*
* {@link Response} implementation produced when making a {@link TokenRequest}-based request.
*
* @author hendrikc
*
*/
public interface TokenResponse extends Response {
/**
*
* Returns the token that can be used for auto complete requests.
*
* @return the token
*/
String getToken();
}