Enum Class DeliveryFailureMessageReceivedResult.DeliveryFailureAction
java.lang.Object
java.lang.Enum<DeliveryFailureMessageReceivedResult.DeliveryFailureAction>
com.novomind.ecom.api.imail.core.result.DeliveryFailureMessageReceivedResult.DeliveryFailureAction
- All Implemented Interfaces:
Serializable
,Comparable<DeliveryFailureMessageReceivedResult.DeliveryFailureAction>
,Constable
- Enclosing class:
DeliveryFailureMessageReceivedResult
public static enum DeliveryFailureMessageReceivedResult.DeliveryFailureAction
extends Enum<DeliveryFailureMessageReceivedResult.DeliveryFailureAction>
The DeliveryFailureAction specifies the different actions
that are available in the novomind iAGENT system for the handling of delivery
failure messages.
In this context the sent ticket of a delivery failure message is
the ticket determined by the novomind iAGENT system. The sending of the
ticket is the reason for this delivery failure message.
- Since:
- 11.27
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe type DISMISS represents the action that will delete the delivery failure message from the incoming account without further action.The type PROCESS_AS_INCOMING represents the action that will lead to a normal processing of this delivery failure message.The type REACTIVATE_TICKET represents the action that will create a history entry in the sent ticket causing this delivery failure message. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DISMISS
The type DISMISS represents the action that will delete the delivery failure message from the incoming account without further action. This action can be performed on delivery failure messages with no sent ticket. There will be no status changes/entries in the novomind iAGENT system regarding the sent ticket.- Since:
- 11.27
-
REACTIVATE_TICKET
The type REACTIVATE_TICKET represents the action that will create a history entry in the sent ticket causing this delivery failure message. Furthermore the sent ticket will be reactivated in the novomind iAGENT system. This action is only valid if a sent ticket is available.- Since:
- 11.27
-
PROCESS_AS_INCOMING
The type PROCESS_AS_INCOMING represents the action that will lead to a normal processing of this delivery failure message. It will be processed like a normal incoming message and a new ticket will be created. This action can be performed on delivery failure messages with no associated ticket.- Since:
- 11.27
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-