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

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


            return self.forums();
        }

        public Forum createForum( String name )
        {
            Forum forum = module.currentUnitOfWork().newEntity( Forum.class );
            forum.name().set( name );
            administrator.makeModerator( forum );
            return forum;
        }
View Full Code Here

TOP

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

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.