Package org.springside.examples.quickstart.data

Source Code of org.springside.examples.quickstart.data.UserData

/*******************************************************************************
* Copyright (c) 2005, 2014 springside.github.io
*
* Licensed under the Apache License, Version 2.0 (the "License");
*******************************************************************************/
package org.springside.examples.quickstart.data;

import org.springside.examples.quickstart.entity.User;
import org.springside.modules.test.data.RandomData;

public class UserData {

  public static User randomNewUser() {
    User user = new User();
    user.setLoginName(RandomData.randomName("user"));
    user.setName(RandomData.randomName("User"));
    user.setPlainPassword(RandomData.randomName("password"));

    return user;
  }
}
TOP

Related Classes of org.springside.examples.quickstart.data.UserData

TOP
Copyright © 2018 www.massapi.com. 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.