
org.openl.rules.ruleservice.conf.ServiceConfigurer Maven / Gradle / Ivy
package org.openl.rules.ruleservice.conf;
import java.util.Collection;
import org.openl.rules.ruleservice.core.ServiceDescription;
import org.openl.rules.ruleservice.loader.RuleServiceLoader;
/**
* Serves to determine all services to be deployed according to the data source current state.
*
* @author PUdalau
*/
public interface ServiceConfigurer {
/**
* Compute all service to be deployed according to the projects in the data source state(accessed through the
* loader).
*
* @param ruleServiceLoader Loader to access projects.
* @return List of {@link ServiceDescription} to deployed.
*/
Collection getServicesToBeDeployed(RuleServiceLoader ruleServiceLoader);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy