Is it possible to use the servicenet when using the cloud files api in Java? Currently I'm using it as follows:
ContextBuilder cb = ContextBuilder.newBuilder(config.getProvider())
.credentials(config.getUserName(), config.getApiKey()).modules(modules);
CloudFilesApi cfa = cb.buildApi(CloudFilesApi.class);
I'm asking this because I used to use the python client which has a boolean parameter in order to choose whether to use the public or the service net:
cf = pyrax.connect_to_cloudfiles(region=CDN_REGION, public=CDN_USEPUBLIC)