> @@ -144,6 +135,25 @@
>     void stopContainer(@PathParam("id") String containerId);
>  
>     /**
> +    * @param containerId The id of the container to be stopped.
> +    * @param options the stop options @see 
> org.jclouds.docker.options.StopOptions
> +    */
> +   @Named("container:stop")
> +   @POST
> +   @Path("/containers/{id}/stop")
> +   void stopContainer(@PathParam("id") String containerId, StopOptions 
> options);

here! instead of making an options cruft to enclose a single option, use 
`@QueryParam("t") int waitSeconds`. Less code, less confusion.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/113/files#r21004959

Reply via email to