org.frameworkset.elasticsearch.entity.ErrorResponse 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 java.io.Serializable;
public class ErrorResponse implements SearchResult,Serializable{
private ErrorInfo error;
private int status;
public ErrorResponse() {
// TODO Auto-generated constructor stub
}
public ErrorInfo getError() {
return error;
}
public void setError(ErrorInfo error) {
this.error = error;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy