> + > +import java.io.Closeable; > + > +/** > + * Provides synchronous access to Docker. > + * > + * @author Andrea Turli > + * @see <a > href="http://docs.docker.io/en/latest/api/docker_remote_api_v1.8/#docker-remote-api-v1-8"></a> > + */ > +public interface DockerApi extends Closeable { > + > + /** > + * Provides synchronous access to Docker Remote API features. > + */ > + @Delegate > + RemoteApi getRemoteApi();
Is there a plan to add more apis to this class? If not, you could consider moving all methods from the `RemoteApi` to the `DockerApi`. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/57/files#r10838196
