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

com.asayama.gwt.angular.client.Provider Maven / Gradle / Ivy

package com.asayama.gwt.angular.client;

/**
 * Provider represents a constructor function which returns Service Factory.
 * Service Factories themselves are functions which create {@link Service}s.
 * 
 * @author kyoken74
 * @see Provide
 */
public interface Provider extends Injectable {

	Factory getFactory();
}