Example usage for org.apache.commons.daemon Daemon interface-usage

List of usage examples for org.apache.commons.daemon Daemon interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.daemon Daemon interface-usage.

Usage

From source file me.preilly.SimplePush.java

/**
 * Generate a unique number in a push notification
 *
 */
public class SimplePush implements Daemon {

From source file be.neutrinet.ispng.VPN.java

/**
 *
 * @author wannes
 */
public class VPN implements Daemon {

From source file org.gnieh.blue.launcher.Main.java

/** Launcher for the OSGi environment that does not block at the end of startup.
 *  It is used for sbt to get hand back on the lifecycle when starting a test server.
 *  It is based on the main class from the the Felix project.
 *
 *  @author Lucas Satabin
 */

From source file com.vmware.identity.idm.server.IdmServer.java

public class IdmServer implements Daemon {

    private static final String ALLOW_REMOTE_PROPERTY = "vmware.idm.allow.remote";

    private static final int ERROR_SERVICE_NOT_ACTIVE = 0x462; // 1062
    private static final int ERROR_FAIL_SHUTDOWN = 0x15F; // 351

From source file org.mapbuilderfreq.FrequencyMapClient.java

public class FrequencyMapClient implements Daemon {

    private static String DB_HOST = "";
    private static String DB_PORT = "";
    private static String DB_USER = "";
    private static String DB_PASSWORD = "";

From source file ca.brood.softlogger.Softlogger.java

public class Softlogger implements Daemon, XMLConfigurable {
    public static final String DEFAULT_CONFIG_FILE = "softlogger.xml";
    private static Softlogger softlogger;
    private Logger log;

    private String loggerName = "Unnamed Logger";

From source file com.smartmarmot.dbforbix.DBforBix.java

/**
 * DBforBix daemon main class
 */
public class DBforBix implements Daemon {

    private static final Logger LOG = Logger.getLogger(DBforBix.class);

From source file org.apache.rya.streams.querymanager.QueryManagerDaemon.java

/**
 * JSVC integration code for a {@link QueryManager} to be used as a non-Windows daemon.
 */
@DefaultAnnotation(NonNull.class)
public class QueryManagerDaemon implements Daemon {

From source file com.cws.esolutions.agent.AgentDaemon.java

/**
 * Interface for the Application Data DAO layer. Allows access
 * into the asset management database to obtain, modify and remove
 * application information.
 *
 * @see org.apache.commons.daemon.Daemon

From source file org.apache.cloudstack.ServerDaemon.java

/***
 * The ServerDaemon class implements the embedded server, it can be started either
 * using JSVC or directly from the JAR along with additional jars not shaded in the uber-jar.
 * Configuration parameters are read from server.properties file available on the classpath.
 */
public class ServerDaemon implements Daemon {