Package org.apache.jetspeed.daemon

Examples of org.apache.jetspeed.daemon.Daemon


    Get the last known result of the given DaemonEntry's processing
    */
    public int getResult(DaemonEntry entry) {

        try {
            Daemon daemon = this.getDaemon(entry);
            return daemon.getResult();
        } catch (DaemonException e) {
            Log.error(e);
            return Daemon.RESULT_UNKNOWN;
        }
       
View Full Code Here


    Get the last known message of the given DaemonEntry's processing
    */
    public String getMessage( DaemonEntry entry ) {

        try {
            Daemon daemon = this.getDaemon(entry);
            return daemon.getMessage();
        } catch (DaemonException e) {
            Log.error(e);
            return null;
        }       
    }
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.daemon.Daemon

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.