BasicDeploymentMBean
, ConfigurationMBean
, DescriptorBean
, javax.management.DynamicMBean
, javax.management.MBeanRegistration
, javax.management.NotificationBroadcaster
, SettableBean
, TargetInfoMBean
, WebLogicMBean
DBClientDataDirectoryMBean
, LibraryMBean
public interface AppDeploymentMBean extends BasicDeploymentMBean
Modifier and Type | Field | Description |
---|---|---|
static java.lang.String |
DEFAULT_STAGE |
|
static java.lang.String |
EXTERNAL_STAGE |
Indicates that the files will be expected in the target server's staging
directory, but the server will not copy them there.
|
static java.lang.String |
NO_STAGE |
Specifies that the deployment will not be copied to target servers.
|
static java.lang.String |
STAGE |
Specifies that WebLogic Server will copy the application to the target
server's staging directory.
|
DEFAULT_EMPTY_BYTE_ARRAY
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
createPlan() |
Create a deployment plan in a default directory
|
java.lang.String |
createPlan(java.lang.String planPath) |
Create a deployment plan in the specified directory.
|
java.lang.String |
getAbsoluteAltDescriptorDir() |
The fully resolved location of this application's alternate descriptor directory on the Administration Server.
|
java.lang.String |
getAbsoluteAltDescriptorPath() |
The fully resolved location of this application's alternate descriptor on the Administration Server.
|
java.lang.String |
getAbsoluteInstallDir() |
The fully resolved location of this application's installation root directory on the Administration Server.
|
java.lang.String |
getAbsolutePlanDir() |
The fully resolved location of this application's deployment plan directory on the Administration Server.
|
java.lang.String |
getAbsolutePlanPath() |
The fully resolved location of this application's deployment plan on the Administration Server.
|
java.lang.String |
getAbsoluteSourcePath() |
The fully resolved location of this application's source files on the Administration Server.
|
java.lang.String |
getAltDescriptorDir() |
The location of this application's configuration area.
|
java.lang.String |
getApplicationIdentifier() |
The Application Identifier of the application version uniquely identifies
the application version across all versions of all applications.
|
java.lang.String |
getApplicationName() |
The name of the application.
|
byte[] |
getDeploymentPlan() |
The contents of this application's deployment plan, returned as a byte[] containing the XML.
|
byte[] |
getDeploymentPlanExternalDescriptors() |
A zip file containing the external descriptors referenced in the
deployment plan.
|
java.lang.String |
getInstallDir() |
The path to the application's install-root directory, relative to the
domain/config/deployments directory.
|
java.lang.String |
getName() |
The user-specified name of this MBean instance.
|
java.lang.String |
getPlanDir() |
The location of this application's configuration area.
|
java.lang.String |
getPlanPath() |
The path to the deployment plan document on the Administration Server.
|
java.lang.String |
getPlanStagingMode() |
Specifies whether an application's deployment plan is
copied from a source on the Administration Server to the Managed
Server's staging area during application preparation.
|
java.lang.String |
getSecurityDDModel() |
The security model that is used to secure a deployed module.
|
java.lang.String |
getSourcePath() |
The path to the source of the deployable unit on the Administration Server.
|
java.lang.String |
getStagingMode() |
Specifies whether a deployment's files are
copied from a source on the Administration Server to the Managed
Server's staging area during application preparation.
|
java.lang.String |
getVersionIdentifier() |
Uniquely identifies the application version across all versions
of the same application.
|
boolean |
isCacheInAppDirectory() |
|
boolean |
isValidateDDSecurityData() |
This attribute is not used in the current release.
|
void |
setValidateDDSecurityData(boolean validate) |
Sets the value of the ValidateDDSecurityData attribute.
|
createSubDeployment, destroySubDeployment, getDeploymentOrder, getDeploymentPrincipalName, getSubDeployments, lookupSubDeployment, setDeploymentOrder, setDeploymentPrincipalName
freezeCurrentValue, getId, getInheritedProperties, getNotes, isDynamicallyCreated, isInherited, isSet, restoreDefaultValue, setComments, setDefaultedMBean, setNotes, setPersistenceEnabled, unSet
addPropertyChangeListener, createChildCopyIncludingObsolete, getParentBean, isEditable, removePropertyChangeListener
getAttribute, getAttributes, invoke, setAttribute, setAttributes
postDeregister, postRegister, preDeregister, preRegister
addNotificationListener, getNotificationInfo, removeNotificationListener
addTarget, getCompatibilityName, getTargets, removeTarget, setCompatibilityName, setModuleType, setName, setTargets
getMBeanInfo, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent
static final java.lang.String DEFAULT_STAGE
static final java.lang.String NO_STAGE
Specifies that the deployment will not be copied to target servers.
static final java.lang.String STAGE
Specifies that WebLogic Server will copy the application to the target server's staging directory.
static final java.lang.String EXTERNAL_STAGE
Indicates that the files will be expected in the target server's staging directory, but the server will not copy them there. The user is responsible for distributing files.
java.lang.String getName()
The user-specified name of this MBean instance.
This name is included as one of the key properties in the
MBean's javax.management.ObjectName
:
Name=user-specified-name
getName
in interface ConfigurationMBean
getName
in interface TargetInfoMBean
getName
in interface WebLogicMBean
java.lang.String getInstallDir()
The path to the application's install-root directory, relative to the domain/config/deployments directory.
When the installation directory is specified, SourcePath, PlanDir, and PlanPath are derived from this path and need not be specified.
The default value for this is the name of the deployment.
getSourcePath()
,
getPlanDir()
,
getPlanPath()
java.lang.String getSourcePath()
The path to the source of the deployable unit on the Administration Server.
Rules:
If the source path is relative, it is resolved relative to InstallDir/app
if
InstallDir is not null; otherwise, it is resolved relative to the domain root.
Use AbsoluteSourcePath to get a fully resolved value.
getSourcePath
in interface BasicDeploymentMBean
getInstallDir()
,
getAbsoluteSourcePath()
java.lang.String getPlanDir()
The location of this application's configuration area. This directory can contain external descriptor files as specified within the deployment plan document.
Rules:
If the plan directory is a relative path, it is resolved relative to InstallDir if InstallDir is not null; otherwise, it is resolved relative to the domain root.Use AbsolutePlanDir to get a fully resolved value.
getInstallDir()
,
getAbsolutePlanDir()
java.lang.String getPlanPath()
The path to the deployment plan document on the Administration Server.
Rules:
If the plan path is a relative path, it is resolved relative to PlanDir if PlanDir is not null; otherwise, it is resolved relative to the domain root.Use AbsolutePlanPath to get a fully resolved value.
If there is no plan, this returns no plan specified.
getPlanDir()
,
getAbsolutePlanPath()
java.lang.String getVersionIdentifier()
Uniquely identifies the application version across all versions of the same application.
If the application is not versioned, this returns null.
boolean isValidateDDSecurityData()
This attribute is not used in the current release.
void setValidateDDSecurityData(boolean validate)
Sets the value of the ValidateDDSecurityData attribute.
validate
- a boolean indicating the validation setting.isValidateDDSecurityData()
java.lang.String getSecurityDDModel()
The security model that is used to secure a deployed module.
To set this value, you can use the weblogic.Deployer
command-line tool, the Deployment Assistant in the Administration Console,
the WebLogic Scripting Tool (WLST), or another JMX client.
If you deploy a module using one of the previously mentioned tools and
you do not specify a security model value, the module is secured with the security
realm's default model (see
RealmMBean SecurityDDModel
).
If you deploy a module by modifying the domain's config.xml
file
and restarting the server, and if you do not specify a security model value
for the module in config.xml
, the module is secured with the
DDOnly
model, which is the default value of this
AppDeploymentMBean
attribute.
In summary, the order of precedence for the value of this attribute is as follows:
config.xml
and restarting the server,
the order of precedence is:
config.xml
.AppDeploymentMBean SecurityDDModel
attribute.RealmMBean.getSecurityDDModel()
java.lang.String getStagingMode()
Specifies whether a deployment's files are copied from a source on the Administration Server to the Managed Server's staging area during application preparation.
Staging mode for an application can only be set the first time the application is deployed. Once the staging mode for an application is set, it cannot be changed while the application is configured in the domain. The only way to change the staging mode is to undeploy and then redeploy the application.
This attribute overrides the server's staging mode.
ServerTemplateMBean.getStagingMode()
java.lang.String getPlanStagingMode()
Specifies whether an application's deployment plan is copied from a source on the Administration Server to the Managed Server's staging area during application preparation.
Plan staging mode for an application can only be set the first time the application is deployed. Once the plan staging mode for an application is set, it cannot be changed while the application is configured in the domain. The only way to change the plan staging mode is to undeploy and then redeploy the application.
This attribute overrides the server's plan staging mode.
ServerTemplateMBean.getStagingMode()
java.lang.String createPlan(java.lang.String planPath)
planPath
- java.lang.String createPlan()
java.lang.String getAltDescriptorDir()
The location of this application's configuration area. This directory can contain alternate descriptor files.
Rules:
If the alternate descriptor directory is a relative path, it is resolved relative to InstallDir if InstallDir is not null; otherwise, it is resolved relative to the domain root.Use AbsoluteAltDescriptorDir to get a fully resolved value.
getInstallDir()
,
getAbsoluteAltDescriptorDir()
java.lang.String getApplicationIdentifier()
The Application Identifier of the application version uniquely identifies the application version across all versions of all applications. If the application is not versioned, the Application Identifier is the same as the application name.
java.lang.String getApplicationName()
The name of the application.
Note that the name of the current MBean is not the name of the application.
java.lang.String getAbsoluteInstallDir()
java.lang.String getAbsolutePlanPath()
java.lang.String getAbsolutePlanDir()
java.lang.String getAbsoluteAltDescriptorPath()
java.lang.String getAbsoluteAltDescriptorDir()
java.lang.String getAbsoluteSourcePath()
byte[] getDeploymentPlan()
byte[] getDeploymentPlanExternalDescriptors()
boolean isCacheInAppDirectory()