Package com.sun.enterprise.deployment.util

Examples of com.sun.enterprise.deployment.util.BeanMethodCalculator


    public Vector getFieldDescriptors() {
        Vector fieldDescriptors = new Vector();
        if( isEJB20() ) {
            try {
                ClassLoader cl = getEjbBundleDescriptor().getClassLoader();
                BeanMethodCalculator bmc = Globals.getDefaultHabitat().getComponent(BeanMethodCalculator.class);
                if (bmc!=null) {
                    fieldDescriptors = bmc.getPossibleCmpCmrFields
                        (cl, this.getEjbClassName());
                } else {
                    _logger.log(Level.FINE, "enterprise.deploymnet.ejbcontainernotinstalled");
                }
            } catch(Throwable t) {
View Full Code Here

TOP

Related Classes of com.sun.enterprise.deployment.util.BeanMethodCalculator

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.