com.rey.jsonbatch.model.DispatchOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonbatch-core Show documentation
Show all versions of jsonbatch-core Show documentation
An Engine to run batch request with JSON based REST APIs
package com.rey.jsonbatch.model;
public class DispatchOptions {
private Boolean failBackAsString = false;
private Boolean ignoreParsingError = false;
public Boolean getFailBackAsString() {
return failBackAsString;
}
public void setFailBackAsString(Boolean failBackAsString) {
this.failBackAsString = failBackAsString;
}
public Boolean getIgnoreParsingError() {
return ignoreParsingError;
}
public void setIgnoreParsingError(Boolean ignoreParsingError) {
this.ignoreParsingError = ignoreParsingError;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy