Package org.eclipse.jst.j2ee.ejb

Examples of org.eclipse.jst.j2ee.ejb.EJBJar


        requiredInfo.put("class", "org.eclipse.jst.j2ee.ejb.EJBJar");
        requiredInfo.put("nameGetter", "getName");
    }

    public List<String> getSecurityRoles() {
        EJBJar ejb = (EJBJar)this.obj;
        AssemblyDescriptor ad = ejb.getAssemblyDescriptor();
       
        if (ad != null) {
            List<SecurityRole> roles = ad.getSecurityRoles();
            ArrayList<String> result = new ArrayList<String>();
            for (SecurityRole role: roles) {
View Full Code Here

TOP

Related Classes of org.eclipse.jst.j2ee.ejb.EJBJar

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.