Package org.qi4j.samples.forum.data.entity

Examples of org.qi4j.samples.forum.data.entity.Topic


        @Structure
        Module module;

        Topic createTopic( String subject, String message, BoardViewer poster )
        {
            Topic topic = module.currentUnitOfWork().newEntity( Topic.class );

            topic.subject().set( subject );

            Post post = module.currentUnitOfWork().newEntity( Post.class );
            post.message().set( message );

            // Moderation checks
View Full Code Here

TOP

Related Classes of org.qi4j.samples.forum.data.entity.Topic

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.