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