Searched defs:undeploy (Results 1 - 25 of 27) sorted by relevance

12

/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/
H A DEmbeddedDeployer.java111 public void undeploy(String name, UndeployCommandParameters params); method in interface:EmbeddedDeployer
/glassfish-3.1.2/common/simple-glassfish-api/src/main/java/org/glassfish/embeddable/
H A DDeployer.java50 * Deployer service for GlassFish. Using this service, one can deploy and undeploy applications.
105 * to "asadmin undeploy" command is also applicable here with same semantics. Please refer to GlassFish
110 * deployer.undeploy("foo", "--drop-tables", "true");
116 void undeploy(String appName, String... params) throws GlassFishException; method in interface:Deployer
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DDeployer.java214 * @param undeploy boolean flag to remove web application from server
223 public void remove(String contextPath, boolean undeploy) throws IOException; argument
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/handlers/
H A DDeploymentHandler.java287 @Handler(id="gf.undeploy",
290 public static void undeploy(HandlerContext handlerCtx) { method in class:DeploymentHandler
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/core/
H A DJavaEEDeployer.java49 * deploy/undeploy/start/stop of JavaEE application packaged inside the service assembly.
96 public String undeploy(String saName, method in class:JavaEEDeployer
101 className + "undeploy(String, String, String, String)";
H A DJavaEEDeployerMBean.java72 String undeploy(String serviceAssemblyName, method in interface:JavaEEDeployerMBean
H A DJavaEEServiceEngineSUManager.java81 * deploy/undeploy/start/stop of JavaEE application packaged inside the service
180 public String undeploy(String suId, String suPath) throws method in class:JavaEEServiceEngineSUManager
182 String methodSig = className + "undeploy(String, String)";
190 " through private MBean, hence skipping undeploy.");
193 "undeploy",
330 deployer.undeploy(targets, serviceUnitName, getUnDeploymentOptions());
351 "undeploy",
361 "undeploy",
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/deployment/
H A DOpsParams.java60 * undeploy when a deployed application is removed from the system.
64 load, deploy, deploy_instance, unload, undeploy, create_application_ref; enum constant in enum:OpsParams.Origin
98 // whether it's undeploy
100 if (this == Origin.undeploy) {
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/embeddable/
H A DDeployerImpl.java151 public void undeploy(String appName, String... params) throws GlassFishException { method in class:DeployerImpl
157 ActionReport actionReport = executer.executeCommand("undeploy", newParams);
/glassfish-3.1.2/ant-tasks/src/main/java/org/glassfish/ant/embedded/tasks/
H A DUtil.java122 public static void undeploy(String appName, String serverId) throws Exception { method in class:Util
131 deployer.undeploy(appName);
/glassfish-3.1.2/core/kernel/src/main/java/org/glassfish/kernel/embedded/
H A DEmbeddedDeployerImpl.java207 public void undeploy(String name, UndeployCommandParameters params) { method in class:EmbeddedDeployerImpl
233 params.origin = UndeployCommandParameters.Origin.undeploy;
254 deployment.undeploy(name, deploymentContext);
272 undeploy(appName, null);
/glassfish-3.1.2/deployment/javax.enterprise.deploy/src/main/java/javax/enterprise/deploy/spi/
H A DDeploymentManager.java294 public ProgressObject undeploy(TargetModuleID[] moduleIDList) method in interface:DeploymentManager
405 * stop, undeploy, redeploy. It should finish any operations
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/base/stats/
H A DEJBMethodStatsManagerImpl.java134 public void undeploy() { method in class:EJBMethodStatsManagerImpl
H A DMonitoringRegistryMediator.java259 public void undeploy() { method in class:MonitoringRegistryMediator
263 ejbMethodStatsManager.undeploy();
/glassfish-3.1.2/ejb/ejb-container/src/main/java/org/glassfish/ejb/embedded/
H A DEJBContainerImpl.java193 undeploy();
238 private void undeploy() { method in class:EJBContainerImpl
241 deployer.undeploy(deployedAppName);
243 _logger.warning("Cannot undeploy deployed modules: " + e.getMessage());
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DStandardHostDeployer.java622 * @param undeploy boolean flag to remove web application from server
631 public void remove(String contextPath, boolean undeploy) argument
658 if (undeploy) {
H A DStandardHost.java1122 * @param undeploy boolean flag to remove web application from server
1131 public void remove(String contextPath, boolean undeploy) throws IOException { argument
1133 getDeployer().remove(contextPath,undeploy);
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/deployment/
H A DWebServicesDeploymentMBean.java282 public synchronized void undeploy(@ProbeParam("endpoint")WebServiceEndpoint endpoint) { method in class:WebServicesDeploymentMBean
307 public synchronized void undeploy(String appName) { method in class:WebServicesDeploymentMBean
/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployment/client/
H A DDeploymentFacility.java119 public DFProgressObject undeploy(Target[] targets, String moduleID); method in interface:DeploymentFacility
126 * @param targets the Target objects indicating which targets from which to undeploy the application; an empty targets array is a request to undeploy from the default server
127 * @param moduleID identifies the module to undeploy
131 public DFProgressObject undeploy(Target[] targets, String moduleID, Map options); method in interface:DeploymentFacility
H A DAbstractDeploymentFacility.java1005 * @param targets the targets from which to undeploy the app
1009 public DFProgressObject undeploy(Target[] targets, String moduleID) { method in class:AbstractDeploymentFacility
1010 return undeploy(targets, moduleID, new HashMap());
1015 * @param targets the targets from which to undeploy the app
1020 public DFProgressObject undeploy(Target[] targets, String moduleID, Map undeploymentOptions) { method in class:AbstractDeploymentFacility
1028 po.setupForAbnormalExit(localStrings.getLocalString("enterprise.deployment.client.specifyAllTargets", "Application {0} is already deployed on other targets. Please remove all references or specify all targets (or domain target if using asadmin command line) before attempting {1} operation", moduleID, "undeploy"), domain);
1052 // then undeploy from last target
1056 "undeploy",
1061 if (!po.checkStatusAndAddStage((TargetImpl)lastTarget, localStrings.getLocalString("enterprise.deployment.client.undeploy_from_target", "Trying to undeploy application from target {0}", lastTarget.getName()), mainStatus2)) {
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/deployment/
H A DDeployment.java144 * undeployed so various listeners could validate the undeploy operation
192 public void undeploy(String appName, ExtendedDeploymentContext context); method in interface:Deployment
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/
H A DContainer.java286 void undeploy(); method in interface:Container
/glassfish-3.1.2/deployment/autodeploy/src/main/java/org/glassfish/deployment/autodeploy/
H A DAutoDeployer.java499 this.undeploy(apps[i], autoDeployDir,
514 private AutodeploymentStatus undeploy(File applicationFile, File autodeployDir, method in class:AutoDeployer
/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployapi/
H A DSunDeploymentManager.java619 public ProgressObject undeploy(TargetModuleID[] moduleIDList) method in class:SunDeploymentManager
795 * stop, undeploy, redeploy. It should finish any operations
1200 po = deploymentFacility.undeploy(work.targets(), work.getModuleID());
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/
H A DApplicationLifecycle.java1006 public void undeploy(String appName, ExtendedDeploymentContext context) { method in class:ApplicationLifecycle
1021 // for DAS target, the undeploy should unload the application
1932 throw new IllegalArgumentException(localStrings.getLocalString("undeploy_on_multiple_targets", "Application {0} is referenced by more than one targets. Please remove other references or specify all targets (or domain target if using asadmin command line) before attempting undeploy operation.", name));

Completed in 313 milliseconds

12