저장소에서 글로벌 자산 속성 오브젝트를 가져오려면 RAMSession.getAllAssetAttributes(), RAMSession.getAssetAttribute(String name) 또는 RAMSession.getAssetAttributeByURI(String URI)를 사용하십시오.
//Fetch all asset attributes
RAMAssetAttribute[] allAssetAttributes = session.getAllAssetAttributes();
//Fetch an asset attribute by name
RAMAssetAttribute assetAttribute = session.getAssetAttribute("Asset Attribute Name");