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

com.visenze.visearch.internal.json.FacetItemMixin Maven / Gradle / Ivy

There is a newer version: 1.14.5
Show newest version
package com.visenze.visearch.internal.json;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonIgnoreProperties(ignoreUnknown = true)
abstract class FacetItemMixin {

    protected String key;
    protected Integer count;

    public FacetItemMixin(@JsonProperty("value") String value,
                          @JsonProperty("count") Integer count) {
        this.key = value;
        this.count = count;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy