KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7
8 package org.jboss.annotation.ejb;
9 import java.lang.annotation.ElementType JavaDoc;
10 import java.lang.annotation.Retention JavaDoc;
11 import java.lang.annotation.RetentionPolicy JavaDoc;
12 import java.lang.annotation.Target JavaDoc;
13
14 /**
15  * This is an annotation
16  *
17  * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>
18  * @version $Revision: 1.1.2.1 $
19  *
20  **/

21 @Target JavaDoc(ElementType.TYPE) @Retention JavaDoc(RetentionPolicy.RUNTIME)
22 public @interface ContainerConfiguration
23 {
24    Class JavaDoc value();
25 }
26
27
28
Popular Tags