Examples of GBeanInstance


Examples of org.apache.geronimo.gbean.runtime.GBeanInstance

    public Set listGBeans(ObjectName pattern) {
        Set gbeans = registry.listGBeans(pattern);

        Set result = new HashSet(gbeans.size());
        for (Iterator i = gbeans.iterator(); i.hasNext();) {
            GBeanInstance instance = (GBeanInstance) i.next();
            result.add(instance.getObjectNameObject());
        }
        return result;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.