//use the token in the following requests
keystone.token(access.getToken().getId());
//NovaClient novaClient = new NovaClient(KeystoneUtils.findEndpointURL(access.getServiceCatalog(), "compute", null, "public"), access.getToken().getId());
Nova novaClient = new Nova(ExamplesConfiguration.NOVA_ENDPOINT.concat("/").concat(access.getToken().getTenant().getId()));
novaClient.token(access.getToken().getId());
//novaClient.enableLogging(Logger.getLogger("nova"), 100 * 1024);
Servers servers = novaClient.servers().list(true).execute();
for(Server server : servers) {
System.out.println(server);