/******************************************************************************* * Copyright (c) 2012-2016 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.json; /** @author andrew00x */ public class Image { private String repository; private String tag; private String id; private long created; private long size; private long virtualSize; public String getRepository() { return repository; } public void setRepository(String repository) { this.repository = repository; } public String getTag() { return tag; } public void setTag(String tag) { this.tag = tag; } public String getId() { return id; } public void setId(String id) { this.id = id; } public long getCreated() { return created; } public void setCreated(long created) { this.created = created; } public long getSize() { return size; } public void setSize(long size) { this.size = size; } public long getVirtualSize() { return virtualSize; } public void setVirtualSize(long virtualSize) { this.virtualSize = virtualSize; } @Override public String toString() { return "Image{" + "repository='" + repository + '\'' + ", tag='" + tag + '\'' + ", id='" + id + '\'' + ", created=" + created + ", size=" + size + ", virtualSize=" + virtualSize + '}'; } }