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

org.openl.rules.ruleservice.conf.ServiceManagerStarterBean Maven / Gradle / Ivy

package org.openl.rules.ruleservice.conf;

import org.openl.rules.ruleservice.management.ServiceManager;
import org.springframework.beans.factory.InitializingBean;

public final class ServiceManagerStarterBean implements InitializingBean {
    ServiceManager serviceManager;

    public void setServiceManager(ServiceManager serviceManager) {
        this.serviceManager = serviceManager;
    }

    public ServiceManager getServiceManager() {
        return serviceManager;
    }

    @Override
    public void afterPropertiesSet() throws Exception {
        serviceManager.start();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy