1 22 package org.jboss.annotation.ejb; 23 24 import java.lang.annotation.Annotation ; 25 import javax.ejb.RemoteHome ; 26 27 33 public class RemoteHomeImpl implements RemoteHome 34 { 35 private Class value; 36 37 public RemoteHomeImpl(Class value) 38 { 39 this.value = value; 40 } 41 42 public Class value() 43 { 44 return value; 45 } 46 47 public Class <? extends Annotation > annotationType() 48 { 49 return RemoteHome.class; 50 } 51 } 52 | Popular Tags |