Enum DocumentRoutingConstants.Events

    • Enum Constant Detail

      • beforeRouteValidated

        public static final DocumentRoutingConstants.Events beforeRouteValidated
        before the route is validated, each part of the route is in "Draft" state. The session used is unrestricted. The element key is the route.
      • afterRouteValidated

        public static final DocumentRoutingConstants.Events afterRouteValidated
        after the route is validated, each part of the route is in "Validated" state. The session used is unrestricted. The element key is the route.
      • beforeRouteReady

        public static final DocumentRoutingConstants.Events beforeRouteReady
        before the route is ready, each part of the route is in "Validated" state.The session used is unrestricted. The element key is the route.
      • afterRouteReady

        public static final DocumentRoutingConstants.Events afterRouteReady
        after the route is ready, each part of the route is in "Ready" state.The session used is unrestricted. The element key is the route.
      • beforeRouteStart

        public static final DocumentRoutingConstants.Events beforeRouteStart
        before the route starts. The RouteDocument is in "Running" state, other parts of the route is either in Ready, Running or Done state.The session used is unrestricted. The element key is the route.
      • afterRouteFinish

        public static final DocumentRoutingConstants.Events afterRouteFinish
        after the route is finished. The route and each part of the route is in Done state.The session used is unrestricted. The element key is the route.
      • beforeStepRunning

        public static final DocumentRoutingConstants.Events beforeStepRunning
        before the operation chain for this step is called. The step is in "Running" state.The session used is unrestricted. The element key is the step.
      • stepWaiting

        public static final DocumentRoutingConstants.Events stepWaiting
        After the operation chain of this step ran and if the step is not done, ie: if we are in a waiting state.The session used is unrestricted. The element key is the step.
      • afterStepRunning

        public static final DocumentRoutingConstants.Events afterStepRunning
        after the operation chain for this step is called.The step is in "Done" state.The session used is unrestricted. The element key is the step.
    • Method Detail

      • values

        public static DocumentRoutingConstants.Events[] 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 (DocumentRoutingConstants.Events c : DocumentRoutingConstants.Events.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DocumentRoutingConstants.Events valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null