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

io.orchestrate.client.BulkError Maven / Gradle / Ivy

Go to download

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