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

io.dekorate.jaeger.config.Collector Maven / Gradle / Ivy

There is a newer version: 4.1.4
Show newest version
package io.dekorate.jaeger.config;

import java.lang.String;
import io.sundr.builder.annotations.Buildable;

@Buildable(builderPackage = "io.dekorate.deps.kubernetes.api.builder") public class Collector{

    private String host = "";
    private String name = "jaeger-collector";
    private String namespace = "";
    private int port = 14267;

    public Collector(){
    }
    public Collector(String host,String name,String namespace,int port){
            this.host = host != null ? host : "";
            this.name = name != null ? name : "jaeger-collector";
            this.namespace = namespace != null ? namespace : "";
            this.port = port;
    }

    public String getHost(){
            return this.host;
    }

    public String getName(){
            return this.name;
    }

    public String getNamespace(){
            return this.namespace;
    }

    public int getPort(){
            return this.port;
    }

    public static CollectorBuilder newBuilder(){
            return new io.dekorate.jaeger.config.CollectorBuilder();
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy