1 /*2 * JBoss, the OpenSource J2EE webOS3 *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 ;10 import java.lang.annotation.Retention ;11 import java.lang.annotation.RetentionPolicy ;12 import java.lang.annotation.Target ;13 14 /**15 * This is an annotation16 *17 * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>18 * @version $Revision: 1.1.2.1 $19 *20 **/21 @Target (ElementType.TYPE) @Retention (RetentionPolicy.RUNTIME)22 public @interface ContainerConfiguration23 {24 Class value();25 }26 27 28