Class JonasPropertySet
- java.lang.Object
-
- org.codehaus.cargo.container.jonas.JonasPropertySet
-
public class JonasPropertySet extends Object
JOnAS specific properties.
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONFIGURATOR_PREFIX
Prefix used for configuration properties that will set values on the JOnAS configurator.static String
JONAS_CLUSTER_NAME
The JOnAS target cluster name to be used for remote cluster deployment, defaults to null.static String
JONAS_DEPLOYABLE_IDENTIFIER
Defines a deployable identifier for remote deployment, this identifier will be used within JOnAS to identify a deployed application.static String
JONAS_DOMAIN_NAME
The JOnAS target domain name, defaults to "jonas".static String
JONAS_JMS_PORT
JMS port used by JOnAS.static String
JONAS_MEJB_JAAS_ENTRY
For MEJB remote deployment only, defines the JAAS entry to use when connecting.static String
JONAS_MEJB_JAAS_FILE
For MEJB remote deployment only, defines the path where the JAAS configuration file is.static String
JONAS_MEJB_JNDI_INIT_CTX_FACT
For MEJB remote deployment only, the jndi initial context factory, defaults to "org.objectweb.carol.jndi.spi.MultiOrbInitialContextFactory".static String
JONAS_MEJB_JNDI_PATH
For MEJB remote deployment only, defines the path in the JNDI tree of the MEJB remote object, defaults to "ejb/mgmt/MEJB".static String
JONAS_SERVER_NAME
The JOnAS target server name, defaults to "jonas".static String
JONAS_SERVICES_LIST
The list of JOnAS services to launch.static String
JONAS_UNDEPLOY_IGNORE_VERSION
Tells whether to ignore the version of the deployable when undeploying deployables.
-
Constructor Summary
Constructors Modifier Constructor Description protected
JonasPropertySet()
Utility classes don't have a public constructor.
-
-
-
Field Detail
-
JONAS_SERVER_NAME
public static final String JONAS_SERVER_NAME
The JOnAS target server name, defaults to "jonas".- See Also:
- Constant Field Values
-
JONAS_DOMAIN_NAME
public static final String JONAS_DOMAIN_NAME
The JOnAS target domain name, defaults to "jonas".- See Also:
- Constant Field Values
-
JONAS_CLUSTER_NAME
public static final String JONAS_CLUSTER_NAME
The JOnAS target cluster name to be used for remote cluster deployment, defaults to null. If null, we consider deployment is done on the target server only (not a cluster). If not null, the target server must be set to the Domain Master's.- See Also:
- Constant Field Values
-
JONAS_MEJB_JNDI_PATH
public static final String JONAS_MEJB_JNDI_PATH
For MEJB remote deployment only, defines the path in the JNDI tree of the MEJB remote object, defaults to "ejb/mgmt/MEJB".- See Also:
- Constant Field Values
-
JONAS_MEJB_JAAS_FILE
public static final String JONAS_MEJB_JAAS_FILE
For MEJB remote deployment only, defines the path where the JAAS configuration file is. Defaults to "jaas.config", ignored ifJONAS_MEJB_JAAS_ENTRY
is not set.- See Also:
- Constant Field Values
-
JONAS_MEJB_JAAS_ENTRY
public static final String JONAS_MEJB_JAAS_ENTRY
For MEJB remote deployment only, defines the JAAS entry to use when connecting. Defaults to null, in which case no authentication is used.- See Also:
- Constant Field Values
-
JONAS_MEJB_JNDI_INIT_CTX_FACT
public static final String JONAS_MEJB_JNDI_INIT_CTX_FACT
For MEJB remote deployment only, the jndi initial context factory, defaults to "org.objectweb.carol.jndi.spi.MultiOrbInitialContextFactory".- See Also:
- Constant Field Values
-
JONAS_DEPLOYABLE_IDENTIFIER
public static final String JONAS_DEPLOYABLE_IDENTIFIER
Defines a deployable identifier for remote deployment, this identifier will be used within JOnAS to identify a deployed application. When not specified, the file name of the deployable is used as the identifier.- See Also:
- Constant Field Values
-
JONAS_SERVICES_LIST
public static final String JONAS_SERVICES_LIST
The list of JOnAS services to launch. Used in a standalone local configuration. Note that this list is highly dependent on JOnAS versions. Check out your JOnAS documentation for details.- See Also:
- Constant Field Values
-
JONAS_JMS_PORT
public static final String JONAS_JMS_PORT
JMS port used by JOnAS.- See Also:
- Constant Field Values
-
JONAS_UNDEPLOY_IGNORE_VERSION
public static final String JONAS_UNDEPLOY_IGNORE_VERSION
Tells whether to ignore the version of the deployable when undeploying deployables. When this is set totrue
, trying to undeployexample-1.0.1.war
would undeployJONAS_BASE/deploy/example.war
,JONAS_BASE/deploy/example-1.0.0.war
, etc. as long as the prefix and the extension match.- See Also:
- Constant Field Values
-
CONFIGURATOR_PREFIX
public static final String CONFIGURATOR_PREFIX
Prefix used for configuration properties that will set values on the JOnAS configurator.- See Also:
- Constant Field Values
-
-