> +import java.util.Set;
> +
> +/**
> + * @author Andrea Turli
> + */
> +public interface RemoteApi extends Closeable {
> +
> + /**
> + * Get the information of the current docker version.
> + *
> + * @return The information of the current docker version.
> + */
> + @Named("version")
> + @GET
> + @Path("/version")
> + @Consumes(MediaType.APPLICATION_JSON)
Move all `@Consumes` annotation at class level, as it is the one used for all
methods.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r10838603