Interface WebLogicPropertySet
-
public interface WebLogicPropertySetGathers all WebLogic properties.
-
-
Field Summary
Fields Modifier and Type Field Description static StringADMIN_PWDPassword for user with administrator rights.static StringADMIN_USERUser with administrator rights.static StringBEA_HOMEBEA Home.static StringCONFIGURATION_VERSIONVersion of the domain configuration.static StringDEPLOYABLE_FOLDERThe auto-deploy folder, if different then default.static StringDOMAIN_VERSIONLowest common denominator of the servers in the domain.static StringJMS_MODULEWebLogic JMS module name.static StringJMS_SERVERWebLogic JMS server name.static StringJMS_SUBDEPLOYMENTWebLogic JMS subdeployment name.static StringJTA_TRANSACTION_TIMEOUTTimeout for JTA transactions.static StringJYTHON_SCRIPT_OFFLINEExternal offline jython script file paths.
Used for custom configuration of WebLogic container.
Example:
/home/me/script1.py|
/home/me/script2.pystatic StringJYTHON_SCRIPT_ONLINEExternal online jython script file paths.
Used for custom configuration of WebLogic container.
Example:
/home/me/script1.py|
/home/me/script2.pystatic StringJYTHON_SCRIPT_REPLACE_PROPERTIESWhether to replace properties, surrounded by@symbols, when reading the filesJYTHON_SCRIPT_ONLINEand/orJYTHON_SCRIPT_OFFLINE.static StringLOCAL_WEBLOGIC_HOMEPath to local WebLogic home.static StringLOG_ROTATION_TYPEWhich way is log file rotated.
Possible values are: "none", "byTime", "bySize".static StringLOGGINGLog level used in the server log.static StringONLINE_DEPLOYMENTIf set to false then deployments are deployed to WebLogic in stopped state.static StringPASSWORD_LENGTH_MINMinimal length of user password - number.static StringPASSWORD_SPNUM_MINMinimal number of numeric or special characters in password - number.static StringSERVERWebLogic server name.static StringSSL_HOSTNAME_VERIFICATION_IGNOREDSpecifies 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 StringSSL_HOSTNAME_VERIFIER_CLASSThe 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_ONLINEand/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
-
-