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

annotations.me.snowdrop.istio.adapter.fluentd.FluentdFluentImpl Maven / Gradle / Ivy

package me.snowdrop.istio.adapter.fluentd;

import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;

public class FluentdFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements FluentdFluent{

    private String address;

    public FluentdFluentImpl(){
    }
    public FluentdFluentImpl(Fluentd instance){
            this.withAddress(instance.getAddress()); 
    }

    public String getAddress(){
            return this.address;
    }

    public A withAddress(String address){
            this.address=address; return (A) this;
    }

    public Boolean hasAddress(){
            return this.address != null;
    }

    public boolean equals(Object o){
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            if (!super.equals(o)) return false;
            FluentdFluentImpl that = (FluentdFluentImpl) o;
            if (address != null ? !address.equals(that.address) :that.address != null) return false;
            return true;
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy