Enum DeliveryFailureMessageReceivedResult.DeliveryFailureAction
- java.lang.Object
-
- java.lang.Enum<DeliveryFailureMessageReceivedResult.DeliveryFailureAction>
-
- com.novomind.ecom.api.imail.core.result.DeliveryFailureMessageReceivedResult.DeliveryFailureAction
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DeliveryFailureMessageReceivedResult.DeliveryFailureAction>
- Enclosing class:
- DeliveryFailureMessageReceivedResult
public static enum DeliveryFailureMessageReceivedResult.DeliveryFailureAction extends java.lang.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
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISMISS
The type DISMISS represents the action that will delete the delivery failure message from the incoming account without further action.PROCESS_AS_INCOMING
The type PROCESS_AS_INCOMING represents the action that will lead to a normal processing of this delivery failure message.REACTIVATE_TICKET
The type REACTIVATE_TICKET represents the action that will create a history entry in the sent ticket causing this delivery failure message.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DeliveryFailureMessageReceivedResult.DeliveryFailureAction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DeliveryFailureMessageReceivedResult.DeliveryFailureAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISMISS
public static final DeliveryFailureMessageReceivedResult.DeliveryFailureAction 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
public static final DeliveryFailureMessageReceivedResult.DeliveryFailureAction 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
public static final DeliveryFailureMessageReceivedResult.DeliveryFailureAction 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 Detail
-
values
public static DeliveryFailureMessageReceivedResult.DeliveryFailureAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DeliveryFailureMessageReceivedResult.DeliveryFailureAction c : DeliveryFailureMessageReceivedResult.DeliveryFailureAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeliveryFailureMessageReceivedResult.DeliveryFailureAction valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-