새 커뮤니티 작성

다음을 참조하십시오.

새 커뮤니티를 작성하려면 RAMSession.createCommunity(String name)를 사용하십시오. 저장소 관리자만 새 커뮤니티를 작성할 수 있습니다.

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

피드백