Package com.hdfs.user.bean

Examples of com.hdfs.user.bean.Users


    return SUCCESS;

  }

  public String deleteuser() throws Exception {
    Users u = userservice.find(user);
    if (u == null)
      return ERROR;
    userservice.delete(u);
    fileservice.deleteFile(Long.parseLong(u.getRootDirectory()),
        fileservice.getMemory(u.getMemoryId()));
    fileservice.deleteMemory(u.getMemoryId());
    return SUCCESS;
  }
View Full Code Here


          .getMemoryId());
    }
    if (this.user.getPhone() == null) {
      this.user.setPhone(this.userservice.findByName(user).getPhone());
    }
    Users u = userservice.find(user);
    if (u == null)
      return ERROR;
    else {
      userservice.updateUser(user);
      return SUCCESS;
View Full Code Here

    this.user.setRole(1);
    if (this.user.getCheckuser() == null) {
      this.user.setCheckuser(1);
    }

    Users u = userservice.find(user);
    System.out.println("my test=" + user);
    if (u == null)
      return ERROR;
    else {
      userservice.updateUser(user);
View Full Code Here

TOP

Related Classes of com.hdfs.user.bean.Users

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.