1 22 package org.jboss.ejb; 23 24 import javax.ejb.TransactionManagementType ; 25 26 32 public class TransactionManagementImpl implements javax.ejb.TransactionManagement  33 { 34 private TransactionManagementType value = TransactionManagementType.CONTAINER; 35 36 public TransactionManagementImpl() 37 { 38 } 39 40 public TransactionManagementType value() 41 { 42 return value; 43 } 44 45 public void setValue(TransactionManagementType value) 46 { 47 this.value = value; 48 } 49 50 public Class annotationType() 51 { 52 return javax.ejb.TransactionManagement .class; 53 } 54 } 55 | Popular Tags |