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

org.rzo.yajsw.os.posix.bsd.BSDServiceManager Maven / Gradle / Ivy

Go to download

YAJSW is a java centric implementation of the java service wrapper by tanuki (JSW). It aims at being mostly configuration compliant with the original. It should therefore be easy to switch from JSW to YAJSW.

The newest version!
package org.rzo.yajsw.os.posix.bsd;

import java.util.Map;

import org.rzo.yajsw.os.Service;
import org.rzo.yajsw.os.ServiceInfo;
import org.rzo.yajsw.os.ServiceManager;

public class BSDServiceManager implements ServiceManager
{

	public Service createService()
	{
		return new BSDService();
	}

	public Service getService(String name)
	{
		// TODO Auto-generated method stub
		return null;
	}

	public Map getServiceList()
	{
		// TODO Auto-generated method stub
		return null;
	}

	public ServiceInfo getServiceInfo(String name)
	{
		// TODO Auto-generated method stub
		return null;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy