删除资产类型

要从存储库中删除资产类型,请使用 RAMAssetType.setAction(RAMAction) 并传递 RAMAction.DELETE

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

反馈