Interface IProcessorResenderModule
-
- All Superinterfaces:
IDynamicComponent,IProcessorModule
- All Known Implementing Classes:
AbstractActiveResenderModule,AbstractResenderModule,DirectoryResenderModule,ImmediateResenderModule,InMemoryResenderModule
public interface IProcessorResenderModule extends IProcessorModule
Base interface for a re-sender module.- Author:
- OpenAS2, Philip Helger
-
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_RETRIESDefault retries: 0.static StringDO_RESENDAction to resend a real messagestatic StringDO_RESENDMDNAction to resend an MDNstatic StringOPTION_CAUSEAn AS2Exception representing the cause of the errorstatic StringOPTION_INITIAL_SENDERThe internal object representing the original senderstatic StringOPTION_RESEND_ACTIONThe internal send action to be used for resendingstatic StringOPTION_RETRIESDefines the option to be set to define the number of retries.
-
Method Summary
-
Methods inherited from interface com.helger.as2lib.IDynamicComponent
attrs, getName, getSession, initDynamicComponent
-
Methods inherited from interface com.helger.as2lib.processor.module.IProcessorModule
canHandle, handle
-
-
-
-
Field Detail
-
DO_RESEND
static final String DO_RESEND
Action to resend a real message- See Also:
- Constant Field Values
-
DO_RESENDMDN
static final String DO_RESENDMDN
Action to resend an MDN- See Also:
- Constant Field Values
-
OPTION_CAUSE
static final String OPTION_CAUSE
An AS2Exception representing the cause of the error- See Also:
- Constant Field Values
-
OPTION_INITIAL_SENDER
static final String OPTION_INITIAL_SENDER
The internal object representing the original sender- See Also:
- Constant Field Values
-
OPTION_RESEND_ACTION
static final String OPTION_RESEND_ACTION
The internal send action to be used for resending- See Also:
- Constant Field Values
-
OPTION_RETRIES
static final String OPTION_RETRIES
Defines the option to be set to define the number of retries.- See Also:
- Constant Field Values
-
DEFAULT_RETRIES
static final int DEFAULT_RETRIES
Default retries: 0. All values ≤ 0 mean: no retry- See Also:
- Constant Field Values
-
-