Package games.stendhal.server.core.account

Examples of games.stendhal.server.core.account.AccountCreator


  public synchronized void onTimeout(final RPObject object) {
    onExit(object);
  }

  public AccountResult createAccount(final String username, final String password, final String email) {
    final AccountCreator creator = new AccountCreator(username, password, email);
    return creator.create();
  }
View Full Code Here

TOP

Related Classes of games.stendhal.server.core.account.AccountCreator

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.