Community aktualisieren

Mithilfe von RAMSession.put(IRAMSessionObject, IProgressMonitor) können Sie Änderungen an einem neuen oder aktualisierten Community-Objekt festschreiben.

                //Aktualisierung
                community.setName("Updated Community");
                community.setDescription("Updated Community Description");
                
                session.put(community, new NullProgressMonitor());

Feedback