return new ManagedObjectReferenceCollectionImpl(restConnector,self, pageSize);
}
@Override
public ManagedObjectReferenceRepresentation getChildAsset(GId assetId) throws SDKException {
ManagedObjectRepresentation managedObjectRepresentation = get();
String path = createChildAssetPath(managedObjectRepresentation) + "/" + assetId.getValue();
return restConnector.get(path, InventoryMediaType.MANAGED_OBJECT_REFERENCE, ManagedObjectReferenceRepresentation.class);
}