1 27 package org.objectweb.jonas_ejb.deployment.xml; 28 29 import org.objectweb.jonas_lib.deployment.xml.AbsElement; 30 35 36 public class RelationshipRoleSource extends AbsElement { 37 38 41 private String description = null; 42 43 46 private String ejbName = null; 47 48 49 52 public RelationshipRoleSource() { 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 getEjbName() { 77 return ejbName; 78 } 79 80 84 public void setEjbName(String ejbName) { 85 this.ejbName = ejbName; 86 } 87 88 93 public String toXML(int indent) { 94 StringBuffer sb = new StringBuffer (); 95 sb.append(indent(indent)); 96 sb.append("<relationship-role-source>\n"); 97 98 indent += 2; 99 100 sb.append(xmlElement(description, "description", indent)); 102 sb.append(xmlElement(ejbName, "ejb-name", indent)); 104 indent -= 2; 105 sb.append(indent(indent)); 106 sb.append("</relationship-role-source>\n"); 107 108 return sb.toString(); 109 } 110 } 111 | Popular Tags |