> + .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 is correct! However to make this PR more testable I have included it for
now.
Ho about removing it when the Cluster Type feature is added?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/78/files#r9606702