Map<String, String> properties = new HashMap<String, String>();
properties.put(Constants.ROP_SERVICE_URL_PROPERTY, "http://localhost:8080/tutorial-rop-server/cayenne-service");
properties.put(Constants.ROP_SERVICE_USERNAME_PROPERTY, "cayenne-user");
properties.put(Constants.ROP_SERVICE_PASSWORD_PROPERTY, "secret");
ClientRuntime runtime = new ClientRuntime(properties);
ObjectContext context = runtime.newContext();
newObjectsTutorial(context);
selectTutorial(context);
deleteTutorial(context);
}