1 package org.jboss.annotation.ejb;2 3 import java.lang.annotation.ElementType ;4 import java.lang.annotation.Retention ;5 import java.lang.annotation.RetentionPolicy ;6 import java.lang.annotation.Target ;7 8 /**9 * Comment10 *11 * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>12 * @version $Revision: 1.1.2.2 $13 */14 @Target (ElementType.TYPE) @Retention (RetentionPolicy.RUNTIME)15 public @interface LocalHome16 {17 Class value();18 }19