package DBC;

public interface DBC extends java.rmi.Remote {
    void   search(String a) throws java.rmi.RemoteException;
    void   open() throws java.rmi.RemoteException;
    void   close() throws java.rmi.RemoteException;
    String getName() throws java.rmi.RemoteException;
    String getAge() throws java.rmi.RemoteException;
    String getOcc() throws java.rmi.RemoteException;
}