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

io.afu.utils.component.nginx.Upstream Maven / Gradle / Ivy

There is a newer version: 0.0.55-RELEASE
Show newest version
package io.afu.utils.component.nginx;

import java.util.List;

public class Upstream {
    private String name;
    private String upstreamType;
    private List servers;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getUpstreamType() {
        return upstreamType;
    }

    public void setUpstreamType(String upstreamType) {
        this.upstreamType = upstreamType;
    }

    public List getServers() {
        return servers;
    }

    public void setServers(List servers) {
        this.servers = servers;
    }

    public String getUpstream(){

        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy