Delete an asset type

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

                //Delete the asset type 
                assetType.setAction(RAMAction.DELETE);
                
                session.put(assetType, new NullProgressMonitor());

Feedback