All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.che.infrastructure.docker.client.Exec Maven / Gradle / Ivy

There is a newer version: 7.3.3
Show newest version
/*
 * Copyright (c) 2012-2018 Red Hat, Inc.
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *   Red Hat, Inc. - initial API and implementation
 */
package org.eclipse.che.infrastructure.docker.client;

import java.util.Arrays;
import java.util.Objects;

/** @author andrew00x */
public class Exec {
  private final String[] command;
  private final String id;

  public Exec(String[] command, String id) {
    this.command = command;
    this.id = id;
  }

  public String[] getCommand() {
    return command;
  }

  public String getId() {
    return id;
  }

  @Override
  public String toString() {
    return "Exec{" + "command=" + Arrays.toString(command) + ", id='" + id + '\'' + '}';
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    Exec exec = (Exec) o;
    return Arrays.equals(command, exec.command) && Objects.equals(id, exec.id);
  }

  @Override
  public int hashCode() {
    return Objects.hash(Arrays.hashCode(command), id);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy