Package org.focusns.model.forum

Examples of org.focusns.model.forum.ForumPost


    @Autowired
    private ForumPostService forumPostService;

    @Test
    public void createForumPost() {
        ForumPost post = new ForumPost();
        post.setTitle("post title");
        post.setContent("post content");
        post.setCreatedAt(new Date());
        post.setModifiedAt(new Date());
        post.setCreatedById(1);
        post.setModifiedById(1);
        post.setProjectId(1);
        post.setTopicId(1);
        //
        forumPostService.createForumPost(post);
    }
View Full Code Here

TOP

Related Classes of org.focusns.model.forum.ForumPost

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.