1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.ejb3.test.simplecluster;8 9 import javax.ejb.Stateless ;10 import javax.ejb.Remote ;11 import org.jboss.annotation.ejb.Clustered;12 import org.jboss.annotation.ejb.Clustered;13 14 /**15 * Comment16 *17 * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>18 * @version $Revision: 1.3.2.2 $19 */20 @Stateless 21 @Clustered22 @Remote (Session.class)23 public class SessionBean implements Session24 {25 public void test()26 {27 System.out.println("hello!!!");28 }29 }30