/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; import javax.validation.constraints.NotNull; import java.util.Objects; import static java.util.Objects.requireNonNull; /** * Arguments holder for {@link org.eclipse.che.plugin.docker.client.DockerConnector#waitContainer(WaitContainerParams)}. * * @author Mykola Morhun */ public class WaitContainerParams { private String container; /** * Creates arguments holder with required parameters. * * @param container * container identifier, either id or name * @return arguments holder with required parameters * @throws NullPointerException * if {@code container} is null */ public static WaitContainerParams create(@NotNull String container) { return new WaitContainerParams().withContainer(container); } private WaitContainerParams() {} /** * Adds container to this parameters. * * @param container * container identifier, either id or name * @return this params instance * @throws NullPointerException * if {@code container} is null */ public WaitContainerParams withContainer(@NotNull String container) { requireNonNull(container); this.container = container; return this; } public String getContainer() { return container; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; WaitContainerParams that = (WaitContainerParams)o; return Objects.equals(container, that.container); } @Override public int hashCode() { return Objects.hash(container); } }