org.jcoderz.commons.connector
Class ConnectorConfigurationKeys

java.lang.Object
  extended by org.jcoderz.commons.connector.ConnectorConfigurationKeys

public final class ConnectorConfigurationKeys
extends Object

This class defines all configuration keys for the Connector service.

Author:
generated

Field Summary
static ConfigurationKey AMOUNT_OF_TRIES_FORWARDING_REQUEST
          The number of attempts the http connector performs to connect the specified target system.
static ConfigurationKey CONNECT_TIMEOUT_IN_MILLI_SECONDS
          The timeout for creating connections to target systems used by the http connector in milliseconds.
static ConfigurationKey CONNECTION_ERROR_RETRY_DELAY_IN_MILLI_SECONDS
          The delay in milliseconds before retry getting managed connection after a ResourceException whilst getConnection.
static ConfigurationKey FILE_TEMP_DIR
          The temporary-file directory to be used by the File System Connector.
static ConfigurationKey HTTP_CLIENT_ERROR_RESEND_DELAY_IN_MILLI_SECONDS
          The delay in milliseconds before resending request after an http client error (4xx).
static ConfigurationKey HTTP_CLIENT_ERROR_RESEND_FLAG
          Flag indicating resend of message after http client error (4xx).
static ConfigurationKey HTTP_READ_TIMEOUT_ERROR_RESEND_DELAY_IN_MILLI_SECONDS
          The delay in milliseconds before resending request after a timeout reading the response.
static ConfigurationKey HTTP_READ_TIMEOUT_ERROR_RESEND_FLAG
          Flag indicating resend of message after timeout reading the response.
static ConfigurationKey HTTP_SERVER_ERROR_RESEND_DELAY_IN_MILLI_SECONDS
          The delay in milliseconds before resending request after an http server error (5xx).
static ConfigurationKey HTTP_SERVER_ERROR_RESEND_FLAG
          Flag indicating resend of message after http server error (5xx).
static ConfigurationKey READ_TIMEOUT_IN_MILLI_SECONDS
          The timeout for reading response messages from target systems used by the http connector in milliseconds.
static ConfigurationKey SSL_KEY_ALIAS
          The name of the key used for SSL connections established by the http connector.
static ConfigurationKey SSL_KEY_ALIAS_PASSWORD
          The password of the key used for SSL connections established by the connector.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

AMOUNT_OF_TRIES_FORWARDING_REQUEST

public static final ConfigurationKey AMOUNT_OF_TRIES_FORWARDING_REQUEST
The number of attempts the http connector performs to connect the specified target system. This value is valid for all connector retry settings. If this value is changed it will be taken into account for new connections (not pooled connections).


CONNECTION_ERROR_RETRY_DELAY_IN_MILLI_SECONDS

public static final ConfigurationKey CONNECTION_ERROR_RETRY_DELAY_IN_MILLI_SECONDS
The delay in milliseconds before retry getting managed connection after a ResourceException whilst getConnection.


CONNECT_TIMEOUT_IN_MILLI_SECONDS

public static final ConfigurationKey CONNECT_TIMEOUT_IN_MILLI_SECONDS
The timeout for creating connections to target systems used by the http connector in milliseconds. If this value is changed it will be taken into account for new connections (not pooled connections). See also T-NR-P-104. Check also readTimeoutInMilliSeconds if you change this value.


FILE_TEMP_DIR

public static final ConfigurationKey FILE_TEMP_DIR
The temporary-file directory to be used by the File System Connector.


HTTP_CLIENT_ERROR_RESEND_DELAY_IN_MILLI_SECONDS

public static final ConfigurationKey HTTP_CLIENT_ERROR_RESEND_DELAY_IN_MILLI_SECONDS
The delay in milliseconds before resending request after an http client error (4xx). See also httpClientErrorResendFlag and amountOfTriesForwardingRequest. Keep in mind that the requesting (client) system also has a timeout, waiting for the answer. The value for this timeout currently defaults to 6 seconds. If this value is changed it will be taken into account for new connections (not pooled connections).


HTTP_CLIENT_ERROR_RESEND_FLAG

public static final ConfigurationKey HTTP_CLIENT_ERROR_RESEND_FLAG
Flag indicating resend of message after http client error (4xx). See also httpClientErrorResendDelayInMilliSeconds and amountOfTriesForwardingRequest. If this value is changed it will be taken into account for new connections (not pooled connections).


HTTP_READ_TIMEOUT_ERROR_RESEND_DELAY_IN_MILLI_SECONDS

public static final ConfigurationKey HTTP_READ_TIMEOUT_ERROR_RESEND_DELAY_IN_MILLI_SECONDS
The delay in milliseconds before resending request after a timeout reading the response. The delay is to give the target system the chance to recover from an error situation. See also httpReadTimeoutErrorResendFlag and amountOfTriesForwardingRequest. Keep in mind that the requesting (client) system also has a timeout, waiting for the answer. The value for this timeout currently defaults to 6 seconds. If this value is changed it will be taken into account for new connections (not pooled connections).


HTTP_READ_TIMEOUT_ERROR_RESEND_FLAG

public static final ConfigurationKey HTTP_READ_TIMEOUT_ERROR_RESEND_FLAG
Flag indicating resend of message after timeout reading the response. See also httpReadTimeoutErrorResendDelayInMilliSeconds and amountOfTriesForwardingRequest. If this value is changed it will be taken into account for new connections (not pooled connections).


HTTP_SERVER_ERROR_RESEND_DELAY_IN_MILLI_SECONDS

public static final ConfigurationKey HTTP_SERVER_ERROR_RESEND_DELAY_IN_MILLI_SECONDS
The delay in milliseconds before resending request after an http server error (5xx). The delay is to give the target system the chance to recover from an error situation. See also httpServerErrorResendFlag and amountOfTriesForwardingRequest. Keep in mind that the requesting (client) system also has a timeout, waiting for the answer. The value for this timeout currently defaults to 6 seconds. If this value is changed it will be taken into account for new connections (not pooled connections).


HTTP_SERVER_ERROR_RESEND_FLAG

public static final ConfigurationKey HTTP_SERVER_ERROR_RESEND_FLAG
Flag indicating resend of message after http server error (5xx). See also httpServerErrorResendDelayInMilliSeconds and amountOfTriesForwardingRequest. If this value is changed it will be taken into account for new connections (not pooled connections).


READ_TIMEOUT_IN_MILLI_SECONDS

public static final ConfigurationKey READ_TIMEOUT_IN_MILLI_SECONDS
The timeout for reading response messages from target systems used by the http connector in milliseconds. If this value is changed it will be taken into account for new connections (not pooled connections). See also T-NR-P-104. Check also connectTimeoutInMilliSeconds if you change this value.


SSL_KEY_ALIAS_PASSWORD

public static final ConfigurationKey SSL_KEY_ALIAS_PASSWORD
The password of the key used for SSL connections established by the connector. See also configuration entry "sslKeyAlias".


SSL_KEY_ALIAS

public static final ConfigurationKey SSL_KEY_ALIAS
The name of the key used for SSL connections established by the http connector. This key is stored in the keystore defined by the Signature Service as is located in the table SIG_KEYSTORE.



Copyright 2007 The jCoderZ Project.