> +package org.jclouds.examples.rackspace.autoscale;
> +
> +/**
> + * Constants used by the Rackspace Examples.
> + *
> + * @author Zack Shoylev
> + */
> +public interface Constants {
> + // The provider configures jclouds to use the Rackspace Cloud (US).
> + // To use the Rackspace Cloud (UK) set the system property or default
> value to "rackspace-autoscale-uk".
> + // Note that autoscale is not yet supported for the UK.
> + public static final String PROVIDER =
> System.getProperty("provider.autoscale", "rackspace-autoscale-us");
> + public static final String ZONE = System.getProperty("zone.autoscale",
> "DFW");
> +
> + public static final String NAME = "jclouds-example";
> + public static final String PASSWORD = "0192j41dm311iaadjaoqpvplw";
Actually password should not be needed for these constants.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-examples/pull/24/files#r7670015