Optional get CDMI object options Note: We use BaseHttpRequestOptions.pathSuffix to include the CDMI query parameters rather than queryParam because the CDMI specification is not following the standard usage. This is the summary of the CDMI specification: To read one or more requested fields from an existing CDMI container object, one of the following requests shall be performed: GET
///?;;... GET ///?children:;... GET ///?metadata:;... For example: GET /MyContainer/?parentURI;children HTTP/1.1 GET /MyContainer/?childrenrange;children:0-2 HTTP/1.1 To read one or more requested fields from an existing data object, one of the following requests shall be performed: GET //?;;... GET //?value:;... GET //?metadata:;...
@author Kenneth Nagin