> + }
> +
> + private void createDatabase(Instance instance) throws TimeoutException {
> + System.out.println("Create Database");
> +
> + boolean result = databaseApi.create(Constants.NAME);
> + System.out.println(" " + result);
> + }
> +
> + /**
> + * Always close your service when you're done with it.
> + */
> + @SuppressWarnings("deprecation")
> + public void close() {
> + closeQuietly(api);
> + }
Any reason for a method that delegates to a single call?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-examples/pull/6/files#r4628727