KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > annotation > ejb > RemoteHome


1 package org.jboss.annotation.ejb;
2
3 import java.lang.annotation.ElementType JavaDoc;
4 import java.lang.annotation.Retention JavaDoc;
5 import java.lang.annotation.RetentionPolicy JavaDoc;
6 import java.lang.annotation.Target JavaDoc;
7
8 /**
9  * Comment
10  *
11  * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>
12  * @version $Revision: 1.1.2.2 $
13  */

14 @Target JavaDoc(ElementType.TYPE) @Retention JavaDoc(RetentionPolicy.RUNTIME)
15 public @interface RemoteHome
16 {
17    Class JavaDoc value();
18 }
19
Popular Tags