com.github.dockerjava.api.model.GenericResource 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.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
public abstract class GenericResource implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("Kind")
String kind;
@JsonProperty("Value")
T value = null;
public String getKind() {
return kind;
}
public GenericResource withKind(String kind) {
this.kind = kind;
return this;
}
public T getValue() {
return value;
}
public GenericResource withValue(T value) {
this.value = value;
return this;
}
}