Package org.eclipse.jst.javaee.ejb

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


        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) {
                result.add(role.getRoleName());
            }
            return result;
View Full Code Here

TOP

Related Classes of org.eclipse.jst.javaee.ejb.AssemblyDescriptor

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.