Package ch.fusun.baron.core.command.base

Examples of ch.fusun.baron.core.command.base.CreateUserCommand


    return userService.getUser();
  }

  @Override
  public void createUser(User user) {
    client.sendTCP(new CreateUserCommand(user.getName(), user.getPassword()));
    userService.setUser(user);
  }
View Full Code Here

TOP

Related Classes of ch.fusun.baron.core.command.base.CreateUserCommand

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.