KickJava   Java API By Example, From Geeks To Geeks.

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


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

7 package org.jboss.annotation.ejb;
8
9 import java.lang.annotation.Annotation JavaDoc;
10 import org.jboss.annotation.ejb.RemoteBinding;
11
12 /**
13  * Comment
14  *
15  * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>
16  * @version $Revision: 1.1.2.1 $
17  */

18 public class CallByValueImpl implements CallByValue
19 {
20    public Class JavaDoc annotationType()
21    {
22       return CallByValue.class;
23    }
24 }
25
Popular Tags