Package org.springside.examples.bootservice.domain

Examples of org.springside.examples.bootservice.domain.User


  }

  public static Task randomTask() {
    Task task = new Task();
    task.setTitle(RandomData.randomName("Task"));
    User user = new User(1L);
    task.setUser(user);
    return task;
  }
View Full Code Here

TOP

Related Classes of org.springside.examples.bootservice.domain.User

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.