Author: azeez
Date: Wed Dec 29 12:03:11 2010
New Revision: 1053623
URL: http://svn.apache.org/viewvc?rev=1053623&view=rev
Log:
introduced constant
Modified:
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/DeploymentEngine.java
Modified:
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/DeploymentEngine.java
URL:
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/DeploymentEngine.java?rev=1053623&r1=1053622&r2=1053623&view=diff
==============================================================================
---
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/DeploymentEngine.java
(original)
+++
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/DeploymentEngine.java
Wed Dec 29 12:03:11 2010
@@ -80,6 +80,8 @@ public abstract class DeploymentEngine i
*/
public static final String DEPLOYMENT_TASK_RUNNING =
"deployment.task.running";
+ private static final String MODULE_DEPLOYER = "moduleDeployer";
+
//to keep the web resource location if any
protected static String webLocationString = null;
protected Scheduler scheduler;
@@ -1185,7 +1187,6 @@ public abstract class DeploymentEngine i
public static AxisModule buildModule(File modulearchive,
AxisConfiguration config)
throws DeploymentException {
- final String MODULE_DEPLOYER = "moduleDeployer";
AxisModule axismodule;
ModuleDeployer deployer = (ModuleDeployer)
config.getParameterValue(MODULE_DEPLOYER);
try {