Package com.sun.enterprise.admin.server.core

Examples of com.sun.enterprise.admin.server.core.AdminService


     * @exception ServerLifecycleException if this subsystem detects a fatal
     *  error that prevents this subsystem from being used
     */
    public void onReady(ServerContext sc) throws ServerLifecycleException {
        serverStatus |= STATUS_READY;
        AdminService adminService = AdminService.getAdminService();
        if(adminService.isDas()) {
            ConfigContext ctx = adminService.getAdminContext()
            .getAdminConfigContext();
           
            ConfigContextEventListener el = new LoadbalancerAdminEventListener();
            ctx.addConfigContextEventListener(el);
        }
View Full Code Here


    public static void init() {
        if (!isEE()) {
            return;
        }

        AdminService adminService = AdminService.getAdminService();

        if (!adminService.isDas()) {
            return;
        }

        ConfigContext ctx = adminService.getAdminContext()
                                        .getAdminConfigContext();
        ConfigContextEventListener el = new ClbAdminEventListener();
        ctx.addConfigContextEventListener(el);
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.server.core.AdminService

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.