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

annotations.me.snowdrop.servicecatalog.api.model.ClusterServicePlanStatusFluentImpl Maven / Gradle / Ivy

The newest version!
package me.snowdrop.servicecatalog.api.model;

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 ClusterServicePlanStatusFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements ClusterServicePlanStatusFluent{

    private Boolean removedFromBrokerCatalog;

    public ClusterServicePlanStatusFluentImpl(){
    }
    public ClusterServicePlanStatusFluentImpl(ClusterServicePlanStatus instance){
            this.withRemovedFromBrokerCatalog(instance.getRemovedFromBrokerCatalog()); 
    }

    public Boolean isRemovedFromBrokerCatalog(){
            return this.removedFromBrokerCatalog;
    }

    public A withRemovedFromBrokerCatalog(Boolean removedFromBrokerCatalog){
            this.removedFromBrokerCatalog=removedFromBrokerCatalog; return (A) this;
    }

    public Boolean hasRemovedFromBrokerCatalog(){
            return this.removedFromBrokerCatalog != null;
    }

    public A withNewRemovedFromBrokerCatalog(String arg1){
            return (A)withRemovedFromBrokerCatalog(new Boolean(arg1));
    }

    public A withNewRemovedFromBrokerCatalog(boolean arg1){
            return (A)withRemovedFromBrokerCatalog(new Boolean(arg1));
    }

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




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy