Package org.apache.geronimo.gbean

Examples of org.apache.geronimo.gbean.GBean


        super.postRegister(registrationDone);

        if (registrationDone.booleanValue()) {
            // we're now offically on line
            if (target instanceof GBean) {
                GBean gbean = (GBean) target;
                gbean.setGBeanContext(new GBeanMBeanContext(server, this, objectName));
            }
            offline = false;
        } else {
            // we need to bring the reference back off line
            for (Iterator iterator = referenceMap.values().iterator(); iterator.hasNext();) {
View Full Code Here


            GBeanMBeanReference reference = (GBeanMBeanReference) iterator.next();
            reference.offline();
        }

        if (target instanceof GBean) {
            GBean gbean = (GBean) target;
            gbean.setGBeanContext(null);
        }

        offline = true;
        target = null;
View Full Code Here

TOP

Related Classes of org.apache.geronimo.gbean.GBean

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.