I am trying to read the metadata from an OData Endpoint using Apache Olingo library. I want to get the list of Schemas that are there in the service.
Sample code goes like this-
DataServices services; //TODO:
for (Schema schema : services.getSchemas()){}
How do I intialize this 'services' variable?