org.frameworkset.elasticsearch.entity.MapSearchHit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-elasticsearch-rest-entity Show documentation
Show all versions of bboss-elasticsearch-rest-entity Show documentation
bboss elasticsearch client with restful and java api without elasticsearch jar dependended.
package org.frameworkset.elasticsearch.entity;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
public class MapSearchHit extends BaseSearchHit {
@JsonProperty("_source")
private Map source;
public MapSearchHit() {
// TODO Auto-generated constructor stub
}
public Map getSource() {
return source;
}
public void setSource(Map source) {
this.source = source;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy