Package org.rhq.enterprise.server.core

Examples of org.rhq.enterprise.server.core.StartupLocal


        // some date in the past
        response.addHeader("Expires", "Mon, 8 Aug 2006 10:00:00 GMT");
        boolean serverInitialized;
        String startupError = null;
        try {
            StartupLocal startupBean = LookupUtil.getStartupLocal();
            serverInitialized = startupBean.isInitialized();
            startupError = startupBean.getError();
        } catch (Throwable t) {
            serverInitialized = false; // this probably means we are still starting up and app server hasn't made EJBs available yet
        }
        PrintWriter out = response.getWriter();
        out.println("{");
View Full Code Here

TOP

Related Classes of org.rhq.enterprise.server.core.StartupLocal

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.