1 22 23 package org.jboss.annotation.spring; 24 25 import java.lang.annotation.ElementType ; 26 import java.lang.annotation.Retention ; 27 import java.lang.annotation.RetentionPolicy ; 28 import java.lang.annotation.Target ; 29 30 34 @Target ({ElementType.METHOD, ElementType.FIELD}) 35 @Retention (RetentionPolicy.RUNTIME) 36 public @interface Spring 37 { 38 39 String jndiName(); 40 41 String bean() default ""; 42 43 } 44 | Popular Tags |