1 /*2 * JBoss, Home of Professional Open Source3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 8 package org.jboss.ejb3.test.clusteredsession.nested;9 10 import org.jboss.ejb3.test.clusteredsession.NodeAnswer;11 12 import java.rmi.dgc.VMID ;13 14 /**15 * Comment16 *17 * @author Ben Wang18 * @version $Revision: 46483 $19 */20 public interface NestedStateful21 {22 int increment(); 23 void reset();24 }25