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

si.mazi.rescu.IRestProxyFactory Maven / Gradle / Ivy

There is a newer version: 3.0
Show newest version
package si.mazi.rescu;

/**
 * @see RestProxyFactory
 */
public interface IRestProxyFactory {
  /**
   * @see RestProxyFactory#createProxy(Class, String, ClientConfig, Interceptor...)
   */
   I createProxy(Class restInterface, String baseUrl, ClientConfig config, Interceptor... interceptors);

  /**
   * @see RestProxyFactory#createProxy(Class, String)
   */
   I createProxy(Class restInterface, String baseUrl);
}