Package com.webobjects.monitor.application.starter

Examples of com.webobjects.monitor.application.starter.ApplicationStarter


    public WOComponent bounceClickedWithRollingBouncer() {
        return bounceClickedWithBouncer(new RollingShutdownBouncer(myApplication()));
    }
   
    private WOComponent bounceClickedWithBouncer(ApplicationStarter bouncer) {
        ApplicationStarter old = currentBouncer();
        if (old != null) {
            old.interrupt();
        }
        session().setObjectForKey(bouncer, bouncerName());
        bouncer.start();
        return newDetailPage();
    }
View Full Code Here

TOP

Related Classes of com.webobjects.monitor.application.starter.ApplicationStarter

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.