Package org.apache.openejb.jee

Examples of org.apache.openejb.jee.SecurityRole


                if (exists) {
                    log.debug("addDeclareRoles: <security-role> entry found: " + annotationRoleName);
                }
                else {
                    log.debug("addDeclareRoles: <security-role> entry NOT found: " + annotationRoleName);
                    SecurityRole securityRole = new SecurityRole();
                    securityRole.setRoleName(annotationRoleName);
                    webApp.getSecurityRole().add(securityRole);
                }
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.openejb.jee.SecurityRole

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.