Asset als Entwurf speichern

Um ein Asset als Entwurf zu speichern, verwenden Sie RAMAsset.setAction(RAMAction) und übergeben Sie RAMAction.UPDATE_DRAFT oder RAMAction.CREATE_DRAFT.

                //Als Entwurf speichern
                newAsset.setAction(RAMAction.UPDATE_AS_DRAFT);
                
                session.put(newAsset, new NullProgressMonitor());

Feedback