新規コミュニティーを作成するには、RAMSession.createCommunity(String name) を使用します。 リポジトリー管理者のみが、新規コミュニティーを作成できます。
//Create new community
RAMCommunity community = session.createCommunity("New Community");
community.setDescription("Description of my community");
session.put(community, new NullProgressMonitor());