monrovia.server.core
Class AppControlImpl_Stub

java.lang.Object
  |
  +--java.rmi.server.RemoteObject
        |
        +--java.rmi.server.RemoteStub
              |
              +--monrovia.server.core.AppControlImpl_Stub
All Implemented Interfaces:
AppControl, java.rmi.Remote, java.io.Serializable

public final class AppControlImpl_Stub
extends java.rmi.server.RemoteStub
implements AppControl, java.rmi.Remote

See Also:
Serialized Form

Fields inherited from class java.rmi.server.RemoteObject
ref
 
Constructor Summary
AppControlImpl_Stub(java.rmi.server.RemoteRef ref)
           
 
Method Summary
 void addPlayer(Player $param_Player_1)
          Add new player.
 java.lang.String getPlayerCreatureImpl()
          Get the default player creature implementing class.
 boolean hasPlayer(java.lang.String $param_String_1, boolean $param_boolean_2)
          Returns true, if there is a player with the name specified.
 void removePlayer(java.lang.String $param_String_1, boolean $param_boolean_2)
          Remove a player.
 void shutdown()
          Shutdown for the server.
 
Methods inherited from class java.rmi.server.RemoteStub
setRef
 
Methods inherited from class java.rmi.server.RemoteObject
equals, getRef, hashCode, toString, toStub
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AppControlImpl_Stub

public AppControlImpl_Stub(java.rmi.server.RemoteRef ref)
Method Detail

addPlayer

public void addPlayer(Player $param_Player_1)
               throws java.rmi.RemoteException,
                      StorageException
Description copied from interface: AppControl
Add new player.

Specified by:
addPlayer in interface AppControl
Following copied from interface: monrovia.server.core.AppControl
Parameters:
pPlayer - The new player

getPlayerCreatureImpl

public java.lang.String getPlayerCreatureImpl()
                                       throws java.rmi.RemoteException
Description copied from interface: AppControl
Get the default player creature implementing class.
Specified by:
getPlayerCreatureImpl in interface AppControl

hasPlayer

public boolean hasPlayer(java.lang.String $param_String_1,
                         boolean $param_boolean_2)
                  throws java.rmi.RemoteException
Description copied from interface: AppControl
Returns true, if there is a player with the name specified.

Specified by:
hasPlayer in interface AppControl
Following copied from interface: monrovia.server.core.AppControl
Parameters:
pName - Name of the player to query
pInDisk - If true, check also the disk

removePlayer

public void removePlayer(java.lang.String $param_String_1,
                         boolean $param_boolean_2)
                  throws java.rmi.RemoteException,
                         StorageException
Description copied from interface: AppControl
Remove a player.

Specified by:
removePlayer in interface AppControl
Following copied from interface: monrovia.server.core.AppControl
Parameters:
pName - Name of the player to remove
pFromDisk - If true, the player is removed from the disk also
Throws:
StorageException - When the player does not exist

shutdown

public void shutdown()
              throws java.rmi.RemoteException
Description copied from interface: AppControl
Shutdown for the server.
Specified by:
shutdown in interface AppControl