/* * JBoss, the OpenSource EJB server * * Distributable under LGPL license. * See terms of license at gnu.org. */ package javax.ejb; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * @author Bill Burke * @version $Revision: 1.2 $ */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface BusinessMethod { }