> + * Binds the Account Metadata to the HTTP request headers.
> + *
> + * @see {@link Binder}
> + * @see {@link Account}
> + */
> +@Singleton
> +public class BindAccountMetadataToHeaders implements Binder {
> +
> + private final Function<String, String> transformMetadataKeysFN;
> +
> + public BindAccountMetadataToHeaders() {
> +
> + transformMetadataKeysFN = new Function<String, String>() {
> +
> + @Override
> + public String apply(String element) {
Looks like a function used in multiple places. Move out to a util class?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/17/files#r6383363