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

org.openmetadata.schema.services.connections.metadata.ElasticsSearch Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version

package org.openmetadata.schema.services.connections.metadata;

import javax.annotation.processing.Generated;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * Configuration for Sink Component in the OpenMetadata Ingestion Framework.
 * 
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
    "type",
    "config"
})
@Generated("jsonschema2pojo")
public class ElasticsSearch {

    /**
     * Type of sink component ex: metadata
     * (Required)
     * 
     */
    @JsonProperty("type")
    @JsonPropertyDescription("Type of sink component ex: metadata")
    @NotNull
    private String type;
    /**
     * key/value pairs to pass to workflow component.
     * 
     */
    @JsonProperty("config")
    @JsonPropertyDescription("key/value pairs to pass to workflow component.")
    @Valid
    private ComponentConfig config;

    /**
     * Type of sink component ex: metadata
     * (Required)
     * 
     */
    @JsonProperty("type")
    public String getType() {
        return type;
    }

    /**
     * Type of sink component ex: metadata
     * (Required)
     * 
     */
    @JsonProperty("type")
    public void setType(String type) {
        this.type = type;
    }

    public ElasticsSearch withType(String type) {
        this.type = type;
        return this;
    }

    /**
     * key/value pairs to pass to workflow component.
     * 
     */
    @JsonProperty("config")
    public ComponentConfig getConfig() {
        return config;
    }

    /**
     * key/value pairs to pass to workflow component.
     * 
     */
    @JsonProperty("config")
    public void setConfig(ComponentConfig config) {
        this.config = config;
    }

    public ElasticsSearch withConfig(ComponentConfig config) {
        this.config = config;
        return this;
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(ElasticsSearch.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
        sb.append("type");
        sb.append('=');
        sb.append(((this.type == null)?"":this.type));
        sb.append(',');
        sb.append("config");
        sb.append('=');
        sb.append(((this.config == null)?"":this.config));
        sb.append(',');
        if (sb.charAt((sb.length()- 1)) == ',') {
            sb.setCharAt((sb.length()- 1), ']');
        } else {
            sb.append(']');
        }
        return sb.toString();
    }

    @Override
    public int hashCode() {
        int result = 1;
        result = ((result* 31)+((this.type == null)? 0 :this.type.hashCode()));
        result = ((result* 31)+((this.config == null)? 0 :this.config.hashCode()));
        return result;
    }

    @Override
    public boolean equals(Object other) {
        if (other == this) {
            return true;
        }
        if ((other instanceof ElasticsSearch) == false) {
            return false;
        }
        ElasticsSearch rhs = ((ElasticsSearch) other);
        return (((this.type == rhs.type)||((this.type!= null)&&this.type.equals(rhs.type)))&&((this.config == rhs.config)||((this.config!= null)&&this.config.equals(rhs.config))));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy