Interface WebLogicPropertySet
-
public interface WebLogicPropertySet
Gathers all WebLogic properties.
-
-
Field Summary
Fields Modifier and Type Field Description static String
ADMIN_PWD
Password for user with administrator rights.static String
ADMIN_USER
User with administrator rights.static String
BEA_HOME
BEA Home.static String
CONFIGURATION_VERSION
Version of the domain configuration.static String
DEPLOYABLE_FOLDER
The auto-deploy folder, if different then default.static String
DOMAIN_VERSION
Lowest common denominator of the servers in the domain.static String
JMS_MODULE
WebLogic JMS module name.static String
JMS_SERVER
WebLogic JMS server name.static String
JMS_SUBDEPLOYMENT
WebLogic JMS subdeployment name.static String
JTA_TRANSACTION_TIMEOUT
Timeout for JTA transactions.static String
JYTHON_SCRIPT_OFFLINE
External offline jython script file paths.
Used for custom configuration of WebLogic container.
Example:
/home/me/script1.py|
/home/me/script2.pystatic String
JYTHON_SCRIPT_ONLINE
External online jython script file paths.
Used for custom configuration of WebLogic container.
Example:
/home/me/script1.py|
/home/me/script2.pystatic String
JYTHON_SCRIPT_REPLACE_PROPERTIES
Whether to replace properties, surrounded by@
symbols, when reading the filesJYTHON_SCRIPT_ONLINE
and/orJYTHON_SCRIPT_OFFLINE
.static String
LOCAL_WEBLOGIC_HOME
Path to local WebLogic home.static String
LOG_ROTATION_TYPE
Which way is log file rotated.
Possible values are: "none", "byTime", "bySize".static String
LOGGING
Log level used in the server log.static String
ONLINE_DEPLOYMENT
If set to false then deployments are deployed to WebLogic in stopped state.static String
PASSWORD_LENGTH_MIN
Minimal length of user password - number.static String
PASSWORD_SPNUM_MIN
Minimal number of numeric or special characters in password - number.static String
SERVER
WebLogic server name.static String
SSL_HOSTNAME_VERIFICATION_IGNORED
Specifies whether to ignore the installed implementation of the weblogic.security.SSL.HostnameVerifier interface (when this server is acting as a client to another application server).
Possible values: true or false.
Default set to true for test purposes.static String
SSL_HOSTNAME_VERIFIER_CLASS
The name of the class that implements the weblogic.security.SSL.HostnameVerifier interface.
-
-
-
Field Detail
-
ADMIN_USER
static final String ADMIN_USER
User with administrator rights.- See Also:
- Constant Field Values
-
ADMIN_PWD
static final String ADMIN_PWD
Password for user with administrator rights.- See Also:
- Constant Field Values
-
SERVER
static final String SERVER
WebLogic server name.- See Also:
- Constant Field Values
-
DEPLOYABLE_FOLDER
static final String DEPLOYABLE_FOLDER
The auto-deploy folder, if different then default.- See Also:
- Constant Field Values
-
BEA_HOME
static final String BEA_HOME
BEA Home. This is where bea products are installed.- See Also:
- Constant Field Values
-
CONFIGURATION_VERSION
static final String CONFIGURATION_VERSION
Version of the domain configuration. Used in WebLogic 9x+. format: 9.2.3.0.- See Also:
- Constant Field Values
-
DOMAIN_VERSION
static final String DOMAIN_VERSION
Lowest common denominator of the servers in the domain. Used in WebLogic 9x+. format: 9.2.3.0.- See Also:
- Constant Field Values
-
LOGGING
static final String LOGGING
Log level used in the server log.- See Also:
- Constant Field Values
-
LOG_ROTATION_TYPE
static final String LOG_ROTATION_TYPE
Which way is log file rotated.
Possible values are: "none", "byTime", "bySize".- See Also:
- Constant Field Values
-
JMS_SERVER
static final String JMS_SERVER
WebLogic JMS server name.- See Also:
- Constant Field Values
-
JMS_MODULE
static final String JMS_MODULE
WebLogic JMS module name.- See Also:
- Constant Field Values
-
JMS_SUBDEPLOYMENT
static final String JMS_SUBDEPLOYMENT
WebLogic JMS subdeployment name.- See Also:
- Constant Field Values
-
JYTHON_SCRIPT_OFFLINE
static final String JYTHON_SCRIPT_OFFLINE
External offline jython script file paths.
Used for custom configuration of WebLogic container.
Example:
/home/me/script1.py|
/home/me/script2.py- See Also:
- Constant Field Values
-
JYTHON_SCRIPT_ONLINE
static final String JYTHON_SCRIPT_ONLINE
External online jython script file paths.
Used for custom configuration of WebLogic container.
Example:
/home/me/script1.py|
/home/me/script2.py- See Also:
- Constant Field Values
-
JYTHON_SCRIPT_REPLACE_PROPERTIES
static final String JYTHON_SCRIPT_REPLACE_PROPERTIES
Whether to replace properties, surrounded by@
symbols, when reading the filesJYTHON_SCRIPT_ONLINE
and/orJYTHON_SCRIPT_OFFLINE
.- See Also:
- Constant Field Values
-
SSL_HOSTNAME_VERIFICATION_IGNORED
static final String SSL_HOSTNAME_VERIFICATION_IGNORED
Specifies whether to ignore the installed implementation of the weblogic.security.SSL.HostnameVerifier interface (when this server is acting as a client to another application server).
Possible values: true or false.
Default set to true for test purposes.- See Also:
- Constant Field Values
-
SSL_HOSTNAME_VERIFIER_CLASS
static final String SSL_HOSTNAME_VERIFIER_CLASS
The name of the class that implements the weblogic.security.SSL.HostnameVerifier interface. Used for setting Custom Hostname Verifier.
Default set to None.- See Also:
- Constant Field Values
-
JTA_TRANSACTION_TIMEOUT
static final String JTA_TRANSACTION_TIMEOUT
Timeout for JTA transactions. If the transaction is still in the "active" state after this time (counting from begin()), it is automatically rolled back.- See Also:
- Constant Field Values
-
LOCAL_WEBLOGIC_HOME
static final String LOCAL_WEBLOGIC_HOME
Path to local WebLogic home. This property is used in Remote container to gather WLST dependencies needed for remote communication with WebLogic instance. WebLogic needs to be installed locally even for remote calls.- See Also:
- Constant Field Values
-
PASSWORD_LENGTH_MIN
static final String PASSWORD_LENGTH_MIN
Minimal length of user password - number. Used when configuring new users.
Note: Please be aware that WebLogic 1.2.1.4 onwards doesn't have a configurable password validator.- See Also:
- Constant Field Values
-
PASSWORD_SPNUM_MIN
static final String PASSWORD_SPNUM_MIN
Minimal number of numeric or special characters in password - number. Used when configuring new users.
Note: Please be aware that WebLogic 1.2.1.4 onwards doesn't have a configurable password validator.- See Also:
- Constant Field Values
-
ONLINE_DEPLOYMENT
static final String ONLINE_DEPLOYMENT
If set to false then deployments are deployed to WebLogic in stopped state. If set to true then deployments are deployed while WebLogic is running. Online deployment is usable for deploying larger applications with roles defined in web.xml. Possible values: true or false. Default value false.- See Also:
- Constant Field Values
-
-