public class DBConnectionProperties extends MyProperties
MyProperties.SKIPAUTOLOAD
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CRYPTOALGORITHMS
The name of the property used to indicate the set of crypto algorithm names that can be used by a client
|
static java.lang.String |
DEFAULTCONNECTIONIDLETIME
The property name for specifying the connection idle time for all connections created using a DBConnection constructor that does not specify an explicit idle time.
|
static java.lang.String |
DEFAULTENCRYPTIONALGORITHMNAMES
The name of the property that specifies which ciphers will be used by connections that are created by a constructor that did not explicitly provide this information
|
static java.lang.String |
DEFAULTENCRYPTIONALGORITHMNAMESDEFAULT
The value used for the DEFAULTENCRYPTIONALGORITHMNAMES property if no value is explicitly configured
|
static java.lang.String |
DEFAULTSIGNATUREALGORITHMNAMES
The name of the property that specifies which signature algorithms can be employed by a DBConnection that is created using a constructor that does not explicitly provide this information.
|
static java.lang.String |
DEFAULTSIGNATUREALGORITHMNAMESDEFAULT
The default value for the signature algorithms list that will be used for the DEFAULTSIGNATUREALGORITHMNAMES property, if no value is configured
|
static java.lang.String |
DEFAULTTRANSACTIONSAUTOCOMMITMODE
The name of the property that specifies the (default) transaction autocommit setting for all connections created using a constructor that does not explicitly provide this information.
|
static java.lang.String |
DEFAULTTRANSACTIONSAUTOCOMMITMODEDEFAULT
The default setting for the
DEFAULTTRANSACTIONSAUTOCOMMITMODE setting ("FALSE" ) |
static java.lang.String |
DEFAULTTRANSACTIONSDDLCAPTUREMODE
The name for the property ("DDLCAPTURE" ) configuring the DBConnection-level default DDLCAPTURE setting for transactions started by methods not explicitly providing this setting
|
static java.lang.String |
DEFAULTTRANSACTIONSDDLCAPTUREMODEDEFAULT
The default setting for the
DEFAULTTRANSACTIONSDDLCAPTUREMODE property ("FALSE" ) |
static java.lang.String |
DEFAULTTRANSACTIONSREADONLYMODE
The name of the property ("TRANSACTIONSREADONLY" ) that specifies the (default !) read-only mode setting for all transactions started on a connection created using a constructor that does not explicitly state this value.
|
static java.lang.String |
DEFAULTTRANSACTIONSREADONLYMODEDEFAULT
The default value for the "TRANSACTIONSREADONLY" property ("FALSE" )
|
static java.lang.String |
DEFAULTTRANSACTIONSSNAPSHOTMODE
The name ("DEFAULTTRANSACTIONSSNAPSHOTMODE" ) of the property for configuring the snapshot mode for read-only transactions, when the startTransaction request does not explicitly provide this information
|
static java.lang.String |
DEFAULTTRANSACTIONSSNAPSHOTMODEDEFAULT
The default setting ("OFF" ) for the
DEFAULTTRANSACTIONSSNAPSHOTMODE if that setting is not configured |
static java.lang.String |
HOST
The property name ("HOST" ) for specifying the host to which a client is to connect
|
static java.lang.String |
HOSTDEFAULT
The default value for the "HOST" property ("localhost" )
|
static java.lang.String |
MONITORPORT
The property name ("MONITORPORT" ) for specifying the monitor port to connect to for issuing monitor commands to a SIRA_PRISE server.
|
static java.lang.String |
MONITORPORTDEFAULT
The default value for the "MONITORPORT" property is "50002"
|
static java.lang.String |
PORT
The property name ("PORT" ) for specifying the IP port on some host to which SIRA_PRISE clients are to connect
|
static java.lang.String |
PORTDEFAULT
The default value for the "PORT" property is "50000"
|
static java.lang.String |
SIGNINGALGORITHMS
The name of the property ("SIGNINGALGORITHMS" ) used to indicate the set of signing algorithm names that can be used by a client
|
static java.lang.String |
USER
The property name ("USER" ) for specifying the user that will be owning the transactions started by some client
|
static java.lang.String |
USERDEFAULT
The default value for the "USER" property is ""
|
SUFFIX
Modifier and Type | Method and Description |
---|---|
static java.util.Set<java.lang.String> |
getCryptoAlgorithmNameSet(java.lang.String cryptoAlgorithmNameList)
Gets a Set of supported crypto algorithm names out of a comma-separated list of such names.
|
static java.util.Properties |
getInstance()
Gets the instance
|
static java.util.Set<java.lang.String> |
getSigningAlgorithmNameSet(java.lang.String clientSigningAlgorithmNameList)
Gets a Set of supported signing algorithm names out of a comma-separated list of such names.
|
getOptionalProperty, getOptionalProperty, getPropertiesBaseName, getRequiredProperty, getRequiredProperty, resolveSystemPropertyRefs
getProperty, getProperty, list, list, load, load, loadFromXML, propertyNames, save, setProperty, store, store, storeToXML, storeToXML, stringPropertyNames
clear, clone, compute, computeIfAbsent, computeIfPresent, contains, containsKey, containsValue, elements, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keys, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, toString, values
public static final java.lang.String CRYPTOALGORITHMS
public static final java.lang.String DEFAULTCONNECTIONIDLETIME
public static final java.lang.String DEFAULTENCRYPTIONALGORITHMNAMES
public static final java.lang.String DEFAULTENCRYPTIONALGORITHMNAMESDEFAULT
public static final java.lang.String DEFAULTSIGNATUREALGORITHMNAMES
public static final java.lang.String DEFAULTSIGNATUREALGORITHMNAMESDEFAULT
public static final java.lang.String DEFAULTTRANSACTIONSAUTOCOMMITMODE
public static final java.lang.String DEFAULTTRANSACTIONSAUTOCOMMITMODEDEFAULT
DEFAULTTRANSACTIONSAUTOCOMMITMODE
setting ("FALSE" )public static final java.lang.String DEFAULTTRANSACTIONSDDLCAPTUREMODE
public static final java.lang.String DEFAULTTRANSACTIONSDDLCAPTUREMODEDEFAULT
DEFAULTTRANSACTIONSDDLCAPTUREMODE
property ("FALSE" )public static final java.lang.String DEFAULTTRANSACTIONSREADONLYMODE
public static final java.lang.String DEFAULTTRANSACTIONSREADONLYMODEDEFAULT
public static final java.lang.String HOST
public static final java.lang.String HOSTDEFAULT
public static final java.lang.String MONITORPORT
public static final java.lang.String MONITORPORTDEFAULT
public static final java.lang.String PORT
public static final java.lang.String PORTDEFAULT
public static final java.lang.String SIGNINGALGORITHMS
public static final java.lang.String USER
public static final java.lang.String USERDEFAULT
public static final java.lang.String DEFAULTTRANSACTIONSSNAPSHOTMODE
public static final java.lang.String DEFAULTTRANSACTIONSSNAPSHOTMODEDEFAULT
DEFAULTTRANSACTIONSSNAPSHOTMODE
if that setting is not configuredpublic static java.util.Set<java.lang.String> getCryptoAlgorithmNameSet(java.lang.String cryptoAlgorithmNameList)
cryptoAlgorithmNameList
- A textual specification in the form of a comma-separated list of Cipher namespublic static java.util.Properties getInstance()
public static java.util.Set<java.lang.String> getSigningAlgorithmNameSet(java.lang.String clientSigningAlgorithmNameList)
clientSigningAlgorithmNameList
- A comma-separated list of Signature names.