Create a new community

To create a new community, use RAMSession.createCommunity(String name). Only a repository administrator can create a new community.

                //Create new community
                RAMCommunity community = session.createCommunity("New Community");
                community.setDescription("Description of my community");
                
                session.put(community, new NullProgressMonitor());

Feedback