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

com.azure.messaging.servicebus.implementation.DispositionStatus Maven / Gradle / Ivy

There is a newer version: 7.18.0-beta.1
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.messaging.servicebus.implementation;

/**
 * Message settlement status.
 */
public enum DispositionStatus {
    COMPLETED("completed"),
    DEFERRED("defered"),
    SUSPENDED("suspended"),
    ABANDONED("abandoned");

    private final String value;

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

    /**
     * Gets the string value of the disposition status.
     *
     * @return The string value of the disposition status.
     */
    public String getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy