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

org.eclipse.che.infrastructure.docker.client.DockerImage 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.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import org.eclipse.che.commons.lang.Pair;

/** @author andrew00x */
public class DockerImage {
  private String from;
  private List maintainer;
  private List run;
  private String cmd;
  private List expose;
  private Map env;
  private List> add;
  private String entrypoint;
  private List volume;
  private String user;
  private String workdir;
  private List onbuild;
  private List comments;

  public String getFrom() {
    return from;
  }

  public void setFrom(String from) {
    this.from = from;
  }

  public List getMaintainer() {
    if (maintainer == null) {
      maintainer = new LinkedList<>();
    }
    return maintainer;
  }

  public List getRun() {
    if (run == null) {
      run = new LinkedList<>();
    }
    return run;
  }

  public String getCmd() {
    return cmd;
  }

  public void setCmd(String cmd) {
    this.cmd = cmd;
  }

  public List getExpose() {
    if (expose == null) {
      expose = new LinkedList<>();
    }
    return expose;
  }

  public Map getEnv() {
    if (env == null) {
      env = new LinkedHashMap<>();
    }
    return env;
  }

  public List> getAdd() {
    if (add == null) {
      add = new LinkedList<>();
    }
    return add;
  }

  public String getEntrypoint() {
    return entrypoint;
  }

  public void setEntrypoint(String entrypoint) {
    this.entrypoint = entrypoint;
  }

  public List getVolume() {
    if (volume == null) {
      volume = new LinkedList<>();
    }
    return volume;
  }

  public String getUser() {
    return user;
  }

  public void setUser(String user) {
    this.user = user;
  }

  public String getWorkdir() {
    return workdir;
  }

  public void setWorkdir(String workdir) {
    this.workdir = workdir;
  }

  public List getOnbuild() {
    if (onbuild == null) {
      onbuild = new LinkedList<>();
    }
    return onbuild;
  }

  public List getComments() {
    if (comments == null) {
      comments = new LinkedList<>();
    }
    return comments;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy