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

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

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

/**
 * 

* Interface that defines some optional configuration options that might be * applicable to service factory implementors. *

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

* Allows the override of service end point url. *

* * @param url * the full, correct and valid url of the service end point. */ void setServer(String url); /** *

* Connection and connection request timeout, in milliseconds. *

* * @param timeout * milliseconds until we give up trying to connect * @see * HTTPClient Configuration */ void setTimeout(long timeout); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy