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);
}
/**