Package com.aldaviva.autorpg.data.entities

Examples of com.aldaviva.autorpg.data.entities.Player


  @Override
  public String perform(String sender, String userhost, String[] argv, String argsExceptFirst) throws AutoRPGException {
    if(playerManager.logout(userhost)){
     
      Player player = Player.findByUserhost(userhost);
      List<Character> characters = Character.findCharactersByPlayer(player).getResultList();
     
      bulletinManager.publish(createCharactersDepartedBulletin(characters));
     
      return "Logged out.";
View Full Code Here

TOP

Related Classes of com.aldaviva.autorpg.data.entities.Player

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.