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

annotations.io.alauda.kubernetes.api.model.JenkinsAgentFluentImpl Maven / Gradle / Ivy

The newest version!
package io.alauda.kubernetes.api.model;

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

public class JenkinsAgentFluentImpl> extends io.alauda.kubernetes.api.builder.BaseFluent implements JenkinsAgentFluent{

    private String label;
    private String raw;

    public JenkinsAgentFluentImpl(){
    }
    public JenkinsAgentFluentImpl(JenkinsAgent instance){
            this.withLabel(instance.getLabel()); 
            this.withRaw(instance.getRaw()); 
    }

    public String getLabel(){
            return this.label;
    }

    public A withLabel(String label){
            this.label=label; return (A) this;
    }

    public Boolean hasLabel(){
            return this.label!=null;
    }

    public String getRaw(){
            return this.raw;
    }

    public A withRaw(String raw){
            this.raw=raw; return (A) this;
    }

    public Boolean hasRaw(){
            return this.raw!=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;
            JenkinsAgentFluentImpl that = (JenkinsAgentFluentImpl) o;
            if (label != null ? !label.equals(that.label) :that.label != null) return false;
            if (raw != null ? !raw.equals(that.raw) :that.raw != null) return false;
            return true;
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy