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

org.webpieces.elasticsearch.queries.Bool Maven / Gradle / Ivy

package org.webpieces.elasticsearch.queries;

import com.fasterxml.jackson.annotation.JsonInclude;

import java.util.List;

public class Bool {

    @JsonInclude(JsonInclude.Include.NON_NULL)
    private Must must;

    @JsonInclude(JsonInclude.Include.NON_NULL)
    private Filter filter;

    @JsonInclude(JsonInclude.Include.NON_NULL)
    private Bool bool;

    @JsonInclude(JsonInclude.Include.NON_NULL)
    private List should;

    public Must getMust() {
        return must;
    }

    public void setMust(Must must) {
        this.must = must;
    }

    public Filter getFilter() {
        return filter;
    }

    public void setFilter(Filter filter) {
        this.filter = filter;
    }

    public Bool getBool() {
        return bool;
    }

    public void setBool(Bool bool) {
        this.bool = bool;
    }

    public List getShould() {
        return should;
    }

    public void setShould(List should) {
        this.should = should;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy