1 7 package org.jboss.ejb3.dd; 8 9 import java.util.ArrayList ; 10 import java.util.List ; 11 12 19 public class ContainerTransaction 20 { 21 22 private String transAttribute; 23 24 private Method method; 25 26 public String getTransAttribute() 27 { 28 return transAttribute; 29 } 30 31 public void setTransAttribute(String transAttribute) 32 { 33 this.transAttribute = transAttribute; 34 } 35 36 public Method getMethod() 37 { 38 return method; 39 } 40 41 public void setMethod(Method method) 42 { 43 this.method = method; 44 } 45 46 public String toString() 47 { 48 StringBuffer sb = new StringBuffer (100); 49 sb.append("["); 50 sb.append("ejbRelationName=").append(transAttribute); 51 sb.append("]"); 52 return sb.toString(); 53 } 54 } 55 | Popular Tags |