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

com.tteky.xenonext.fsm.FSMServices Maven / Gradle / Ivy

The newest version!
package com.tteky.xenonext.fsm;

import com.tteky.xenonext.fsm.stats.FSMStatsServiceImpl;
import com.tteky.xenonext.fsm.stats.FSMUIService;
import com.vmware.xenon.common.ServiceHost;

/**
 * Utilities related to FSM service
 */
public class FSMServices {

    public static FSMStatsServiceImpl startUtilityService(ServiceHost host){
        FSMStatsServiceImpl service = new FSMStatsServiceImpl();
        host.startService(service);
        host.startService(new FSMUIService());
        return service;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy