Multidomain MDM
- Multidomain MDM 10.3 HotFix 1
- All Products
Field | Description |
---|---|
MetaDataOrs | Contains the display name, the physical name, and the ID of the ORS. Each ORS in the list is represented by a MetaDataOrs object. |
GetOrsListRequest request = new GetOrsListRequest(); GetOrsListResponse response = (GetOrsListResponse)sipClient.process(request);
for(Iterator iter=response.getOrsList().iterator(); iter.hasNext();) { //iterate through response records MetaDataOrs ors = (MetaDataOrs) iter.next(); System.out.println("ORS Display Name"+ ors.getDisplayName()); System.out.println(" Physical name" + ": " + ors.getName()); System.out.println(" ORS Id" + ": " + ors.getOrsId()); };