io.orchestrate.client.BulkError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orchestrate-client Show documentation
Show all versions of orchestrate-client Show documentation
A high performance, asynchronous Java client to query the Orchestrate.io service.
The newest version!
package io.orchestrate.client;
import java.util.Collections;
import java.util.Map;
/**
* The error for a failed bulk result.
*/
public class BulkError {
private String message;
private String code;
private Map details;
/**
* @return The error message.
*/
public String getMessage() {
return message;
}
/**
* @return The error code of an error.
*/
public String getCode() {
return code;
}
/**
* The details of the error, if any.
* @return A key/value pair of detailed error properties.
*/
public Map getDetails() {
return Collections.unmodifiableMap(details);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy