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

io.kubernetes.client.models.V1beta1EventBuilder Maven / Gradle / Ivy

package io.kubernetes.client.models;

import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;

public class V1beta1EventBuilder extends V1beta1EventFluentImpl implements VisitableBuilder{

    V1beta1EventFluent fluent;
    Boolean validationEnabled;

    public V1beta1EventBuilder(){
            this(true);
    }
    public V1beta1EventBuilder(Boolean validationEnabled){
            this(new V1beta1Event(), validationEnabled);
    }
    public V1beta1EventBuilder(V1beta1EventFluent fluent){
            this(fluent, true);
    }
    public V1beta1EventBuilder(V1beta1EventFluent fluent,Boolean validationEnabled){
            this(fluent, new V1beta1Event(), validationEnabled);
    }
    public V1beta1EventBuilder(V1beta1EventFluent fluent,V1beta1Event instance){
            this(fluent, instance, true);
    }
    public V1beta1EventBuilder(V1beta1EventFluent fluent,V1beta1Event instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withAction(instance.getAction());

            fluent.withApiVersion(instance.getApiVersion());

            fluent.withDeprecatedCount(instance.getDeprecatedCount());

            fluent.withDeprecatedFirstTimestamp(instance.getDeprecatedFirstTimestamp());

            fluent.withDeprecatedLastTimestamp(instance.getDeprecatedLastTimestamp());

            fluent.withDeprecatedSource(instance.getDeprecatedSource());

            fluent.withEventTime(instance.getEventTime());

            fluent.withKind(instance.getKind());

            fluent.withMetadata(instance.getMetadata());

            fluent.withNote(instance.getNote());

            fluent.withReason(instance.getReason());

            fluent.withRegarding(instance.getRegarding());

            fluent.withRelated(instance.getRelated());

            fluent.withReportingController(instance.getReportingController());

            fluent.withReportingInstance(instance.getReportingInstance());

            fluent.withSeries(instance.getSeries());

            fluent.withType(instance.getType());

            this.validationEnabled = validationEnabled; 
    }
    public V1beta1EventBuilder(V1beta1Event instance){
            this(instance,true);
    }
    public V1beta1EventBuilder(V1beta1Event instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withAction(instance.getAction());

            this.withApiVersion(instance.getApiVersion());

            this.withDeprecatedCount(instance.getDeprecatedCount());

            this.withDeprecatedFirstTimestamp(instance.getDeprecatedFirstTimestamp());

            this.withDeprecatedLastTimestamp(instance.getDeprecatedLastTimestamp());

            this.withDeprecatedSource(instance.getDeprecatedSource());

            this.withEventTime(instance.getEventTime());

            this.withKind(instance.getKind());

            this.withMetadata(instance.getMetadata());

            this.withNote(instance.getNote());

            this.withReason(instance.getReason());

            this.withRegarding(instance.getRegarding());

            this.withRelated(instance.getRelated());

            this.withReportingController(instance.getReportingController());

            this.withReportingInstance(instance.getReportingInstance());

            this.withSeries(instance.getSeries());

            this.withType(instance.getType());

            this.validationEnabled = validationEnabled; 
    }

    public V1beta1Event build(){
            V1beta1Event buildable = new V1beta1Event();
            buildable.setAction(fluent.getAction());
            buildable.setApiVersion(fluent.getApiVersion());
            buildable.setDeprecatedCount(fluent.getDeprecatedCount());
            buildable.setDeprecatedFirstTimestamp(fluent.getDeprecatedFirstTimestamp());
            buildable.setDeprecatedLastTimestamp(fluent.getDeprecatedLastTimestamp());
            buildable.setDeprecatedSource(fluent.getDeprecatedSource());
            buildable.setEventTime(fluent.getEventTime());
            buildable.setKind(fluent.getKind());
            buildable.setMetadata(fluent.getMetadata());
            buildable.setNote(fluent.getNote());
            buildable.setReason(fluent.getReason());
            buildable.setRegarding(fluent.getRegarding());
            buildable.setRelated(fluent.getRelated());
            buildable.setReportingController(fluent.getReportingController());
            buildable.setReportingInstance(fluent.getReportingInstance());
            buildable.setSeries(fluent.getSeries());
            buildable.setType(fluent.getType());
            return buildable;
    }

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

            if (validationEnabled != null ? !validationEnabled.equals(that.validationEnabled) :that.validationEnabled != null) return false;
            return true;
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy