Package org.eclipse.jst.javaee.ejb

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


        super(ejb);
        requiredInfo = new HashMap<String, String>();
        requiredInfo.put("class", "org.eclipse.jst.javaee.ejb.EJBJar");
    }
    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.javaee.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.