1 27 package org.objectweb.jonas_ejb.deployment.xml; 28 29 import org.objectweb.jonas_lib.deployment.xml.AbsElement; 30 35 36 public class UseCallerIdentity extends AbsElement { 37 38 39 42 public UseCallerIdentity() { 43 super(); 44 } 45 46 51 public String toXML(int indent) { 52 StringBuffer sb = new StringBuffer (); 53 sb.append(indent(indent)); 54 sb.append("<use-caller-identity>\n"); 55 56 indent += 2; 57 58 indent -= 2; 59 sb.append(indent(indent)); 60 sb.append("</use-caller-identity>\n"); 61 62 return sb.toString(); 63 } 64 } 65 | Popular Tags |