> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
> +package org.jclouds.docker.options;
> +
> +import org.jclouds.http.options.BaseHttpRequestOptions;
> +
> +public class RestartOptions extends BaseHttpRequestOptions {
> +
> +   public static final RestartOptions NONE = new RestartOptions();
> +
> +   /**
> +    * @param t number of seconds to wait before killing the container
> +    * @return RestartOptions
> +    */
> +   public RestartOptions t(String t) {

overload. this is nonsense. and clutters up the project with a builder class to 
enclose a cryptic field. Use `@QueryParam("t") secondsToWait`

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

Reply via email to