/* JFox, the OpenSource J2EE Application Server
 *
 * Copyright (C) 2002 huihoo.com
 * Distributable under GNU LGPL license
 * See the GNU Lesser General Public License for more details.
 */

package org.jfox.ejb.examples.stateless;

import java.rmi.RemoteException;
import javax.ejb.EJBObject;

/**
 * 
 * @author <a href="mailto:young_yy@hotmail.com">Young Yang</a>
 */

public interface Hello extends EJBObject {

  public String getVoice() throws RemoteException;

  public int getCount() throws RemoteException;
  
}