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

io.fabric8.openshift.api.model.BuildOutput Maven / Gradle / Ivy

There is a newer version: 0.0.54
Show newest version

package io.fabric8.openshift.api.model;

import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import javax.validation.Valid;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import io.fabric8.kubernetes.api.model.ObjectReference;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;


/**
 * 
 * 
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
    "pushSecretName",
    "to"
})
public class BuildOutput {

    /**
     * 
     * 
     */
    @JsonProperty("pushSecretName")
    private String pushSecretName;
    /**
     * 
     * 
     */
    @JsonProperty("to")
    @Valid
    private ObjectReference to;
    @JsonIgnore
    private Map additionalProperties = new HashMap();

    /**
     * No args constructor for use in serialization
     * 
     */
    public BuildOutput() {
    }

    /**
     * 
     * @param to
     * @param pushSecretName
     */
    public BuildOutput(String pushSecretName, ObjectReference to) {
        this.pushSecretName = pushSecretName;
        this.to = to;
    }

    /**
     * 
     * 
     * @return
     *     The pushSecretName
     */
    @JsonProperty("pushSecretName")
    public String getPushSecretName() {
        return pushSecretName;
    }

    /**
     * 
     * 
     * @param pushSecretName
     *     The pushSecretName
     */
    @JsonProperty("pushSecretName")
    public void setPushSecretName(String pushSecretName) {
        this.pushSecretName = pushSecretName;
    }

    /**
     * 
     * 
     * @return
     *     The to
     */
    @JsonProperty("to")
    public ObjectReference getTo() {
        return to;
    }

    /**
     * 
     * 
     * @param to
     *     The to
     */
    @JsonProperty("to")
    public void setTo(ObjectReference to) {
        this.to = to;
    }

    @Override
    public String toString() {
        return ToStringBuilder.reflectionToString(this);
    }

    @JsonAnyGetter
    public Map getAdditionalProperties() {
        return this.additionalProperties;
    }

    @JsonAnySetter
    public void setAdditionalProperty(String name, Object value) {
        this.additionalProperties.put(name, value);
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder().append(pushSecretName).append(to).append(additionalProperties).toHashCode();
    }

    @Override
    public boolean equals(Object other) {
        if (other == this) {
            return true;
        }
        if ((other instanceof BuildOutput) == false) {
            return false;
        }
        BuildOutput rhs = ((BuildOutput) other);
        return new EqualsBuilder().append(pushSecretName, rhs.pushSecretName).append(to, rhs.to).append(additionalProperties, rhs.additionalProperties).isEquals();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy