Package org.apache.geronimo.naming.reference

Examples of org.apache.geronimo.naming.reference.GBeanGetResourceRefAddr


    }

    //ResourceReferenceBuilder implementation
    public Reference createResourceRef(String containerId, Class iface) throws DeploymentException {
        Reference ref = new Reference(null, RefAddrContentObjectFactory.class.getName(), null);
        ref.add(new GBeanGetResourceRefAddr(null, containerId, iface));
        return ref;
    }
View Full Code Here


        return ref;
    }

    public Reference createAdminObjectRef(String containerId, Class iface) throws DeploymentException {
        Reference ref = new Reference(null, RefAddrContentObjectFactory.class.getName(), null);
        ref.add(new GBeanGetResourceRefAddr(null, containerId, iface));
        return ref;
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.naming.reference.GBeanGetResourceRefAddr

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.