1 22 package org.jboss.ejb; 23 24 25 31 public class RemoveImpl implements javax.ejb.Remove  32 { 33 private boolean retain = false; 34 35 public RemoveImpl() 36 { 37 38 } 39 40 public RemoveImpl(boolean retain) 41 { 42 this.retain = retain; 43 } 44 45 public boolean retainIfException() 46 { 47 return retain; 48 } 49 50 public Class annotationType() 51 { 52 return javax.ejb.Remove .class; 53 } 54 } 55 | Popular Tags |