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 35 @Target ({ElementType.METHOD, ElementType.TYPE}) 36 @Retention (RetentionPolicy.RUNTIME) 37 public @interface TransactionTimeout 38 { 39 int value() default 0; 40 } 41 | Popular Tags |