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

net.wouterdanes.docker.remoteapi.model.ContainerCommitResponse Maven / Gradle / Ivy

package net.wouterdanes.docker.remoteapi.model;

import org.codehaus.jackson.annotate.JsonProperty;

/**
 * See 
 * http://docs.docker.io/reference/api/docker_remote_api_v1.10/#create-a-new-image-from-a-containers-changes
 */
public class ContainerCommitResponse {

    @JsonProperty("Id")
    private String id;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy