> @@ -267,7 +267,7 @@ public Resource getServer() {
> return this.server;
> }
>
> - public Map<String, String> getMetadata() {
> + public Map<String, Object> getMetadata() {
+1 to future proofing the name
Have a look at one of the Adapters in
[NovaParserModule.java](https://github.com/jclouds/jclouds/blob/master/apis/openstack-nova/src/main/java/org/jclouds/openstack/nova/v2_0/config/NovaParserModule.java).
You'll want to do something like that for the Image class. Don't forget to add
it to the
[provideCustomAdapterBindings()](https://github.com/jclouds/jclouds/blob/master/apis/openstack-nova/src/main/java/org/jclouds/openstack/nova/v2_0/config/NovaParserModule.java#L57)
method.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/626/files#r21775522