com.github.dockerjava.api.command.CreateContainerResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.docker-java
Show all versions of org.apache.servicemix.bundles.docker-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.github.dockerjava.api.command;
import org.apache.commons.lang.builder.ToStringBuilder;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
*
* @author Konstantin Pelykh ([email protected])
*
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class CreateContainerResponse {
@JsonProperty("Id")
private String id;
@JsonProperty("Warnings")
private String[] warnings;
public String getId() {
return id;
}
public String[] getWarnings() {
return warnings;
}
public void setId(String id) {
this.id = id;
}
public void setWarnings(String[] warnings) {
this.warnings = warnings;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
}