Delete an asset

To delete an asset from the repository, use RAMAsset.setAction(RAMAction) and pass in RAMAction.DELETE.

                //Delete an asset
                newAsset.setAction(RAMAction.DELETE);
                
                session.put(newAsset, new NullProgressMonitor());

Feedback