기존 자산 속성 페치

다음을 참조하십시오.

저장소에서 글로벌 자산 속성 오브젝트를 가져오려면 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");

피드백