Package org.focusns.model.forum

Examples of org.focusns.model.forum.ForumTopic


    @Autowired
    private ForumTopicService forumTopicService;

    @Test
    public void createForumTopic() {
        ForumTopic topic = new ForumTopic();
        topic.setTitle("forum title");
        topic.setContent("forum content");
        topic.setCreatedAt(new Date());
        topic.setModifiedAt(new Date());
        topic.setCreatedById(1);
        topic.setModifiedById(1);
        topic.setProjectId(1);
        topic.setCategoryId(1);
        //
        forumTopicService.createForumTopic(topic);
    }
View Full Code Here

TOP

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

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.