1 22 package org.jboss.annotation.ejb; 23 24 import java.lang.annotation.ElementType ; 25 import java.lang.annotation.Retention ; 26 import java.lang.annotation.RetentionPolicy ; 27 import java.lang.annotation.Target ; 28 29 38 @Target ({ElementType.TYPE, ElementType.ANNOTATION_TYPE}) 39 @Retention (RetentionPolicy.RUNTIME) 40 public @interface RemoteBinding 41 { 42 String jndiBinding() default ""; 43 44 String interceptorStack() default ""; 45 46 String clientBindUrl() default ""; 47 48 Class factory() default org.jboss.ejb3.remoting.RemoteProxyFactory.class; 49 } 50 | Popular Tags |