1 26 27 package org.objectweb.jonas_web.deployment.api; 28 29 import org.objectweb.jonas_lib.deployment.xml.SecurityRole; 30 31 35 public class SecurityRoleDesc { 36 37 40 private String name = null; 41 42 43 47 public SecurityRoleDesc(SecurityRole securityRole) { 48 this.name = securityRole.getRoleName(); 49 } 50 51 55 public String getRoleName() { 56 return name; 57 } 58 59 } 60 | Popular Tags |