Enum DeliveryFailureMessageReceivedResult.DeliveryFailureAction

    • 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.
    • 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 name
        java.lang.NullPointerException - if the argument is null