1 27 package org.objectweb.jonas_ear.deployment.xml; 28 29 import org.objectweb.jonas_lib.deployment.xml.AbsElement; 30 35 36 public class SecurityRole extends AbsElement { 37 38 41 private String description = null; 42 43 46 private String roleName = null; 47 48 49 52 public SecurityRole() { 53 super(); 54 } 55 56 60 public String getDescription() { 61 return description; 62 } 63 64 68 public void setDescription(String description) { 69 this.description = description; 70 } 71 72 76 public String getRoleName() { 77 return roleName; 78 } 79 80 84 public void setRoleName(String roleName) { 85 this.roleName = roleName; 86 } 87 88 93 public String toXML(int indent) { 94 StringBuffer sb = new StringBuffer (); 95 sb.append(indent(indent)); 96 sb.append("<security-role>\n"); 97 98 indent += 2; 99 100 sb.append(xmlElement(description, "description", indent)); 102 sb.append(xmlElement(roleName, "role-name", indent)); 104 indent -= 2; 105 sb.append(indent(indent)); 106 sb.append("</security-role>\n"); 107 108 return sb.toString(); 109 } 110 } 111 | Popular Tags |