> + * 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) {
agreed, re-using same name given by Docker team --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/113/files#r20875710