package org.jboss.test.entity.interfaces;
import java.rmi.RemoteException;
import javax.ejb.EJBObject;
public interface EntitySession
extends EJBObject
{
public void createPathological(String name, boolean pathological)
throws RemoteException;
public void removeHomePathological(String name, boolean pathological)
throws RemoteException;
public void removePathological(String name, boolean pathological)
throws RemoteException;
public void findPathological(String name, boolean pathological)
throws RemoteException;
public void getPathological(String name, boolean pathological)
throws RemoteException;
public void setPathological(String name, boolean pathological)
throws RemoteException;
}