// Decompiled by Jad v1.5.7f. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) 
// Source File Name:   boggleServerInterface.java

package boggle.server;

import java.rmi.Remote;
import java.rmi.RemoteException;

public interface boggleServerInterface
    extends Remote
{

    public abstract int Signup(String s, String s1, int i)
        throws RemoteException;

    public abstract void logout(int i)
        throws RemoteException;

    public abstract int login(String s, int i, int j)
        throws RemoteException;

    public abstract String[] getLanguageList()
        throws RemoteException;

    public abstract String[] getGameList()
        throws RemoteException;

    public abstract int getPlayers()
        throws RemoteException;

    public abstract String[] getPlayerList()
        throws RemoteException;
}
