Examples of NewsEntry


Examples of net.dontdrinkandroot.example.angularrestspringsecurity.entity.NewsEntry

  @Path("{id}")
  public NewsEntry read(@PathParam("id") Long id)
  {
    this.logger.info("read(id)");

    NewsEntry newsEntry = this.newsEntryDao.find(id);
    if (newsEntry == null) {
      throw new WebApplicationException(404);
    }
    return newsEntry;
  }
View Full Code Here

Examples of net.dontdrinkandroot.example.angularrestspringsecurity.entity.NewsEntry

    adminUser.addRole("admin");
    this.userDao.save(adminUser);

    long timestamp = System.currentTimeMillis() - 1000 * 60 * 60 * 24;
    for (int i = 0; i < 10; i++) {
      NewsEntry newsEntry = new NewsEntry();
      newsEntry.setContent("This is example content " + i);
      newsEntry.setDate(new Date(timestamp));
      this.newsEntryDao.save(newsEntry);
      timestamp += 1000 * 60 * 60;
    }
  }
 
View Full Code Here
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.