Package org.springside.examples.miniservice.entity.account

Examples of org.springside.examples.miniservice.entity.account.Role


    return user;
  }

  public static User getRandomUserWithAdminRole() {
    User user = AccountData.getRandomUser();
    Role adminRole = AccountData.getAdminRole();
    user.getRoleList().add(adminRole);
    return user;
  }
View Full Code Here


    user.getRoleList().add(adminRole);
    return user;
  }

  public static Role getAdminRole() {
    Role role = new Role();
    role.setId(1L);
    role.setName("Admin");

    return role;
  }
View Full Code Here

TOP

Related Classes of org.springside.examples.miniservice.entity.account.Role

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.