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

com.github.dockerjava.api.model.GenericResource Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy