
org.rzo.yajsw.os.posix.bsd.BSDProcessManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wrapper Show documentation
Show all versions of wrapper Show documentation
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 org.rzo.yajsw.os.Process;
import org.rzo.yajsw.os.posix.PosixProcessManager;
public class BSDProcessManager extends PosixProcessManager
{
public Process createProcess()
{
return (Process) new BSDProcess();
}
public Process getProcess(int pid)
{
return BSDProcess.getProcess(pid);
}
}