1 22 23 package org.jboss.aop.microcontainer.aspects.jndi; 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 36 @Retention (RetentionPolicy.RUNTIME) 37 @Target ({ElementType.TYPE,ElementType.FIELD}) 38 public @interface JndiBinding 39 { 40 44 String name() ; 45 49 String [] aliases() default {}; 50 } 51 | Popular Tags |