Package com.jdkcn.myblog.domain

Examples of com.jdkcn.myblog.domain.Blog.addUrl()


  private Blog createDefaultBlog(User user) {
    Blog blog = new Blog();
    blog.setName("Another Myblog");
    blog.setDefaultPageSize(Constants.DEFAULT_PAGE_SIZE);
    blog.setDescription("Another Myblog.");
    blog.addUrl("http://code.google.com/p/myblog");
    blog.setOwner(user);
    return blogService.saveOrUpdate(blog);
  }
 
  /**
 
View Full Code Here


 
  @Test
  public void testCreateOrUpdate() throws Exception {
    Blog blog = new Blog();
    blog.setName("Just Myblog.");
    blog.addUrl("http://jdkcn.com");
   
    assertNull(blog.getId());
   
    String blogId = blogService.saveOrUpdate(blog).getId();
   
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.