> + .clusterType(in.getClusterType())
> + .flavorId(in.getFlavorId())
> + .nodeCount(in.getNodeCount())
> + .postInitScript(in.getPostInitScript());
> + }
> + }
> +
> + @Override
> + public int compareTo(CreateCluster that) {
> + return this.getName().compareTo(that.getName());
> + }
> +
> + /**
> + * Enumerates different types of clusters.
> + */
> + public static enum ClusterType {
This whole enum should probably just be removed right?
The types of clusters will be changing relatively often and clients will be
able to dynamically discover types via [List Cluster
Types](http://docs.rackspace.com/cbd/api/v1.0/cbd-devguide/content/GET_getClusterTypes__types_typeOperations.html).
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/78/files#r9547569