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

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

package com.github.dockerjava.api.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.ToString;

import java.io.Serializable;
import java.util.List;

/**
 * Specification for DNS related configurations in resolver configuration file (`resolv.conf`).
 *
 * @since {@link RemoteApiVersion#VERSION_1_25}
 */
@EqualsAndHashCode
@ToString
public class ContainerDNSConfig implements Serializable {
    private static final long serialVersionUID = 1L;

    @JsonProperty("Nameservers")
    private List nameservers;
    @JsonProperty("Search")
    private List search;
    @JsonProperty("Options")
    private List options;

    public List getNameservers() {
        return nameservers;
    }

    public ContainerDNSConfig withNameservers(List nameservers) {
        this.nameservers = nameservers;
        return this;
    }

    public List getSearch() {
        return search;
    }

    public ContainerDNSConfig withSearch(List search) {
        this.search = search;
        return this;
    }

    public List getOptions() {
        return options;
    }

    public ContainerDNSConfig withOptions(List options) {
        this.options = options;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy