com.ibm.bpe.api

Interface ExpirationBehavior


Deprecated. As of version 7.0, replaced by the more generalized TimerBehavior interface.
  1. public interface ExpirationBehavior
This interface defines symbolic constants that state how to deal with expirations. These constants are to be used when an activity instance is repeated - see forceRetry.
Since:
6.1

Field Summary

Modifier and Type Field and Description
  1. static
  2. int
CONTINUE_EXPIRATION
Deprecated. Symbolic constant to indicate that the expiration period should continue when the activity is retried.
  1. static
  2. java.lang.String
COPYRIGHT
Deprecated.
  1. static
  2. int
RESET_EXPIRATION
Deprecated. Symbolic constant to indicate that the expiration timer is to be reset when the activity is retried.
  1. static
  2. int
SUPPRESS_EXPIRATION
Deprecated. Symbolic constant to indicate that the activity should not expire when retried.

Field Detail

  1. static final java.lang.String COPYRIGHT
Deprecated.
See Also:

SUPPRESS_EXPIRATION

  1. static final int SUPPRESS_EXPIRATION
Deprecated.
Symbolic constant to indicate that the activity should not expire when retried.
See Also:

RESET_EXPIRATION

  1. static final int RESET_EXPIRATION
Deprecated.
Symbolic constant to indicate that the expiration timer is to be reset when the activity is retried. Any active expiration timer is cancelled, the expiration expression is reevaluated, and a new expiration timer is set up.
See Also:

CONTINUE_EXPIRATION

  1. static final int CONTINUE_EXPIRATION
Deprecated.
Symbolic constant to indicate that the expiration period should continue when the activity is retried. If there is no active expiration timer, the expiration expression is evaluated and the expiration timer is set up accordingly.
See Also: