com.azure.messaging.servicebus.implementation.DispositionStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-servicebus Show documentation
Show all versions of azure-messaging-servicebus Show documentation
Libraries built on Microsoft Azure Service Bus
// 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;
}
}