> + * Server Console Connection structure. > + * > + * @author Epi Vou > + * @see <a href="http://api.openstack.org/api-ref-compute-v2-ext.html" /> > + */ > +public class Console { > + public enum Type { > + NOVNC("novnc"), > + XVPVNC("xvpvnc"), > + SPICE_HTML5("spice-html5"), > + RDP_HTML5("rdp-html5"); > + > + private static final Map<String, Type> types; > + > + static { > + ImmutableMap.Builder<String, Type> builder = new > ImmutableMap.Builder<String, Type>();
Would it handle correctly the detection of RDP_HTML5 from value "rdp-html5", by matching the underscore with the dash? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/339/files#r13025521
