Represents a ISDS endpoint.
| Name | Kind | Group | Required | Default | Type | Enum | Description |
|---|---|---|---|---|---|---|---|
| operation | path | common | true | com.github.czgov.isds.internal.ISDSOperation | MESSAGES DOWNLOAD |
Which operation should be used with isds. | |
| attachmentStore | parameter | common | camel-isds-attachment-store | java.nio.file.Path | folder for storing message attachments | ||
| environment | parameter | common | false | production | com.github.czgov.isds.internal.ISDSEnvironment | production test |
Determine if you want to use real ISDS system, or just testing one. Default value is real (production) system. @param environment allowed values are {@link ISDSEnvironment#PRODUCTION} or {@link ISDSEnvironment#TEST} |
| password | parameter | common | true | java.lang.String | Password for ISDS system | ||
| realtime | parameter | common | false | boolean | Setting realtime to {@code true} will override options {@code from,to}. Assuming {@code consumer.delay=1m}, then {@code from=now - 1 minute} and {@code to=now}. | ||
| username | parameter | common | true | java.lang.String | Username for ISDS system. | ||
| bridgeErrorHandler | parameter | consumer | boolean | Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN/ERROR level and ignored. | |||
| filter | parameter | consumer | !read | java.util.EnumSet |
Download only messages which are specified in filter. Null or empty for all. | ||
| markDownloaded | parameter | consumer | true | boolean | Set ISDS message as downloaded after successful processing of exchange? | ||
| zfo | parameter | consumer | false | boolean | Download message as binary (signed) zfo data instead of Message instance. | ||
| exceptionHandler | parameter | consumer (advanced) | org.apache.camel.spi.ExceptionHandler | To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this options is not in use. By default the consumer will deal with exceptions, that will be logged at WARN/ERROR level and ignored. | |||
| from | parameter | consumer (advanced) | 0L | java.util.Date | Download only messages received after this date. If using the URI, the pattern expected is: {@code yyyy-MM-dd HH:mm:ss} or {@code yyyy-MM-dd'T'HH:mm:ss}. | ||
| to | parameter | consumer (advanced) | Long.MAX_VALUE | java.util.Date | Download only messages received before this date. If using the URI, the pattern expected is: {@code yyyy-MM-dd HH:mm:ss} or {@code yyyy-MM-dd'T'HH:mm:ss}. | ||
| downloadListMessages | parameter | producer | false | boolean | First call getListOfReceivedMessages before downloading message by it's ID. See documentation of ISDS, section 1.6.2.2 Novy Stav. User must login into ISDS in order to download messages. The only API method that causes "user logged in event" is getListOfReceivedMessages. ISDS may throw error number 1222 when downloading message if this option is set to false; @param downloadListMessages | ||
| exchangePattern | parameter | advanced | InOnly | org.apache.camel.ExchangePattern | InOnly RobustInOnly InOut InOptionalOut OutOnly RobustOutOnly OutIn OutOptionalIn |
Sets the default exchange pattern when creating an exchange | |
| synchronous | parameter | advanced | false | boolean | Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). |
The ISDS consumer.