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

org.webpieces.elasticsearch.mapping.Context Maven / Gradle / Ivy

package org.webpieces.elasticsearch.mapping;

import com.fasterxml.jackson.annotation.JsonInclude;

public class Context {

    private String name;
    private String type;
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private Integer precision;
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private String path;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public Integer getPrecision() {
        return precision;
    }

    public void setPrecision(Integer precision) {
        this.precision = precision;
    }

    public String getPath() {
        return path;
    }

    public void setPath(String path) {
        this.path = path;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy