Interface JBossPropertySet
-
- All Known Subinterfaces:
WildFlyPropertySet
public interface JBossPropertySet
JBoss-specific properties.
-
-
Field Summary
Fields Modifier and Type Field Description static String
ALTERNATIVE_DEPLOYMENT_DIR
Deployment target directory to use instead of the defaultdeployments
directory.static String
ALTERNATIVE_MODULES_DIR
Modules directory to use instead of the defaultmodules
directory.static String
CLI_ONLINE_SCRIPT
External CLI script file paths.
Used for custom configuration of JBoss container in online mode.
Example usage:
setProperty("cargo.jboss.script.cli.online.journal", "target/jms-journal.cli")
static String
CLUSTERED
Whether the JBoss Configuration should be clustered.static String
CONFIGURATION
The JBoss configuration selected.static String
DEPLOYER_KEEP_ORIGINAL_WAR_FILENAME
By default, Codehaus Cargo renames the WAR files to match the Web application context, nevertheless this is not relevant when the WAR file has the JBoss-specific context defined in it.
This property defines whether to keep the original WAR filename if the WAR file has a<context-root>
in theWEB-INF/jboss-web.xml
file.static String
JBOSS_AJP_PORT
The port used for AJP.static String
JBOSS_CLASSLOADING_WEBSERVICE_PORT
The port used for the mini webserver used for dynamic and class and resource loading.static String
JBOSS_EJB3_REMOTING_PORT
The port used for the JBoss EJB3 remoting.static String
JBOSS_HTTPS_PORT
The port used for HTTPS.static String
JBOSS_INVOKER_POOL_PORT
The port used for the invoker pool.static String
JBOSS_JMX_PORT
The port used for the JMX server.static String
JBOSS_JRMP_INVOKER_PORT
The port used for the JRMP invoker.static String
JBOSS_JRMP_PORT
The port used for the JRMP service.static String
JBOSS_MANAGEMENT_HTTP_PORT
The port used for the remote native management interface using the HTTP protocol.static String
JBOSS_MANAGEMENT_HTTPS_PORT
The port used for the remote native management interface using the HTTPS protocol.static String
JBOSS_MANAGEMENT_NATIVE_PORT
The port used for the remote native management interface.static String
JBOSS_NAMING_PORT
The port used for JBoss naming service.static String
JBOSS_OSGI_HTTP_PORT
The port used for the OSGi HTTP server.static String
JBOSS_REMOTING_TRANSPORT_PORT
The port used for the JBoss remoting transport connector.static String
JBOSS_TRANSACTION_RECOVERY_MANAGER_PORT
The port used for the JBossTS Recovery Manager.static String
JBOSS_TRANSACTION_STATUS_MANAGER_PORT
The port used for the JBossTS Transaction Status Manager.static String
PROFILE
The JBoss profile.static String
REMOTEDEPLOY_HOSTNAME
Address to serve deployable through.static String
REMOTEDEPLOY_PORT
Port number to serve deployable through.
-
-
-
Field Detail
-
CONFIGURATION
static final String CONFIGURATION
The JBoss configuration selected. Examples of valid values: "default", "all", "minimal".- See Also:
- Constant Field Values
-
PROFILE
static final String PROFILE
The JBoss profile. Examples of valid values: "default", "farm".- See Also:
- Constant Field Values
-
CLUSTERED
static final String CLUSTERED
Whether the JBoss Configuration should be clustered.- See Also:
- Constant Field Values
-
JBOSS_AJP_PORT
static final String JBOSS_AJP_PORT
The port used for AJP.- See Also:
- Constant Field Values
-
JBOSS_HTTPS_PORT
static final String JBOSS_HTTPS_PORT
The port used for HTTPS.- See Also:
- Constant Field Values
-
JBOSS_JRMP_PORT
static final String JBOSS_JRMP_PORT
The port used for the JRMP service.- See Also:
- Constant Field Values
-
JBOSS_NAMING_PORT
static final String JBOSS_NAMING_PORT
The port used for JBoss naming service.- See Also:
- Constant Field Values
-
JBOSS_JMX_PORT
static final String JBOSS_JMX_PORT
The port used for the JMX server.- See Also:
- Constant Field Values
-
JBOSS_MANAGEMENT_NATIVE_PORT
static final String JBOSS_MANAGEMENT_NATIVE_PORT
The port used for the remote native management interface.- See Also:
- Constant Field Values
-
JBOSS_MANAGEMENT_HTTP_PORT
static final String JBOSS_MANAGEMENT_HTTP_PORT
The port used for the remote native management interface using the HTTP protocol.- See Also:
- Constant Field Values
-
JBOSS_MANAGEMENT_HTTPS_PORT
static final String JBOSS_MANAGEMENT_HTTPS_PORT
The port used for the remote native management interface using the HTTPS protocol.- See Also:
- Constant Field Values
-
JBOSS_OSGI_HTTP_PORT
static final String JBOSS_OSGI_HTTP_PORT
The port used for the OSGi HTTP server.- See Also:
- Constant Field Values
-
JBOSS_CLASSLOADING_WEBSERVICE_PORT
static final String JBOSS_CLASSLOADING_WEBSERVICE_PORT
The port used for the mini webserver used for dynamic and class and resource loading.- See Also:
- Constant Field Values
-
JBOSS_JRMP_INVOKER_PORT
static final String JBOSS_JRMP_INVOKER_PORT
The port used for the JRMP invoker.- See Also:
- Constant Field Values
-
JBOSS_INVOKER_POOL_PORT
static final String JBOSS_INVOKER_POOL_PORT
The port used for the invoker pool.- See Also:
- Constant Field Values
-
JBOSS_REMOTING_TRANSPORT_PORT
static final String JBOSS_REMOTING_TRANSPORT_PORT
The port used for the JBoss remoting transport connector.- See Also:
- Constant Field Values
-
JBOSS_EJB3_REMOTING_PORT
static final String JBOSS_EJB3_REMOTING_PORT
The port used for the JBoss EJB3 remoting.- See Also:
- Constant Field Values
-
JBOSS_TRANSACTION_RECOVERY_MANAGER_PORT
static final String JBOSS_TRANSACTION_RECOVERY_MANAGER_PORT
The port used for the JBossTS Recovery Manager.- See Also:
- Constant Field Values
-
JBOSS_TRANSACTION_STATUS_MANAGER_PORT
static final String JBOSS_TRANSACTION_STATUS_MANAGER_PORT
The port used for the JBossTS Transaction Status Manager.- See Also:
- Constant Field Values
-
REMOTEDEPLOY_PORT
static final String REMOTEDEPLOY_PORT
Port number to serve deployable through. Default is1 +
(for example,ServletPropertySet.PORT
18080
if the JBoss servlet port was8080
). This will be used by remote deployers who do not share filesystem with cargo.- See Also:
- Constant Field Values
-
REMOTEDEPLOY_HOSTNAME
static final String REMOTEDEPLOY_HOSTNAME
Address to serve deployable through. Default isInetAddress.getLocalHost().getCanonicalHostName()
. This will be used by remote deployers who do not share filesystem with cargo.- See Also:
- Constant Field Values
-
ALTERNATIVE_DEPLOYMENT_DIR
static final String ALTERNATIVE_DEPLOYMENT_DIR
Deployment target directory to use instead of the defaultdeployments
directory.- See Also:
- Constant Field Values
-
DEPLOYER_KEEP_ORIGINAL_WAR_FILENAME
static final String DEPLOYER_KEEP_ORIGINAL_WAR_FILENAME
By default, Codehaus Cargo renames the WAR files to match the Web application context, nevertheless this is not relevant when the WAR file has the JBoss-specific context defined in it.
This property defines whether to keep the original WAR filename if the WAR file has a<context-root>
in theWEB-INF/jboss-web.xml
file.- See Also:
- Constant Field Values
-
ALTERNATIVE_MODULES_DIR
static final String ALTERNATIVE_MODULES_DIR
Modules directory to use instead of the defaultmodules
directory.- See Also:
- Constant Field Values
-
CLI_ONLINE_SCRIPT
static final String CLI_ONLINE_SCRIPT
External CLI script file paths.
Used for custom configuration of JBoss container in online mode.
Example usage:
setProperty("cargo.jboss.script.cli.online.journal", "target/jms-journal.cli")
- See Also:
- Constant Field Values
-
-