Neue Community erstellen

Um eine neue Community zu erstellen, verwenden Sie RAMSession.createCommunity(String name). Eine neue Community kann nur von einem Repository-Administrator erstellt werden.

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

Feedback