新規または更新されたグローバルなアセット属性オブジェクトに対する変更をコミットするには、RAMSession.put(IRAMSessionObject, IProgressMonitor) を使用します。 リポジトリー管理者のみが、グローバルなアセット属性を作成できます。
//Update Name, Description and valid values
newAssetAttribute.setName("Updated Asset Attribute Name");
newAssetAttribute.setDescription("Updated Asset Attribute Description");
newAssetAttribute.setValidValues(new String[]{"value 3", "new value"});
newAssetAttribute.setSingleSetting(true);
session.put(newAssetAttribute, new NullProgressMonitor());