> + /**
> + * To get a username and API key see
> + * http://www.jclouds.org/documentation/quickstart/rackspace/
> + *
> + * The first argument (args[0]) must be your username The second argument
> + * (args[1]) must be your API key
> + */
> + public static void main(String[] args) {
> +
> + CreateDatabase createDatabase = new CreateDatabase();
> +
> + try {
> + createDatabase.init(args);
> + Instance instance = createDatabase.getInstance();
> + createDatabase.createDatabase(instance);
> + }
[style] `} catch {`? And same for `} finally {`? Bit not a big deal
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-examples/pull/6/files#r4628719