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

com.dnastack.audit.model.AuditEventOutcome Maven / Gradle / Ivy

The newest version!
package com.dnastack.audit.model;

import com.fasterxml.jackson.annotation.JsonValue;

public enum AuditEventOutcome {

    STARTED("started"),
    COMPLETED("completed"),
    FAILED("fully_aborted");

    private final String value;

    AuditEventOutcome(String value) {
        this.value = value;
    }

    @JsonValue
    public String getValue() {
        return value;
    }

    @Override
    public String toString() {
        return value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy