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

io.quarkus.vault.runtime.transit.VaultTransitBatchResult Maven / Gradle / Ivy

package io.quarkus.vault.runtime.transit;

import io.quarkus.vault.VaultException;

public class VaultTransitBatchResult {

    private String error;
    private K value;

    // ---

    public VaultTransitBatchResult(K value, String error) {
        this.value = value;
        this.error = error;
    }

    public K getValue() {
        return value;
    }

    public String getError() {
        return error;
    }

    public K getValueOrElseError() {
        if (error != null) {
            throw new VaultException(error);
        }
        return value;
    }

    public boolean isInError() {
        return error != null;
    }

    public boolean isValid() {
        return error == null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy