All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.afrigis.services.ext.AuthenticatedService Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package com.afrigis.services.ext;

/**
 * 

* Services that required auth should implement this to signal to the factory * that it needs to feed credentials in. *

*

* Hint: this should be all the services *

* *

* Credentials can be obtained from the * AfriGIS Developers * Website *

* * @author hendrikc * */ public interface AuthenticatedService { /** *

* Method by which implementors receive credentials. *

* * @param key * the account key * @param secret * the account secret. */ void setCredentials(String key, byte[] secret); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy