You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by sp...@apache.org on 2005/10/13 16:04:06 UTC

svn commit: r320772 - in /geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core: ./ src/org/apache/geronimo/core/internal/ src/org/apache/geronimo/core/operations/

Author: sppatel
Date: Thu Oct 13 07:04:02 2005
New Revision: 320772

URL: http://svn.apache.org/viewcvs?rev=320772&view=rev
Log:
- move DeploymentPlanCreationOp to operations package
- refactor extensions due to pkg rename
- declare webcomponentimportoperation post op

Added:
    geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/src/org/apache/geronimo/core/operations/DeploymentPlanCreationOperation.java
      - copied, changed from r315071, geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/src/org/apache/geronimo/core/internal/DeploymentPlanCreationOperation.java
Removed:
    geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/src/org/apache/geronimo/core/internal/DeploymentPlanCreationOperation.java
Modified:
    geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/plugin.xml

Modified: geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/plugin.xml
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/plugin.xml?rev=320772&r1=320771&r2=320772&view=diff
==============================================================================
--- geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/plugin.xml (original)
+++ geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/plugin.xml Thu Oct 13 07:04:02 2005
@@ -59,20 +59,25 @@
    <extension id="GeronimoOpExtensions" name="GeronimoOpExtensions" point="org.eclipse.wst.common.frameworks.OperationExtension">									
 		<operationExtension
 			id="org.eclipse.jst.j2ee.internal.web.archive.operations.WebComponentCreationOperation"
-			postOperationClass="org.apache.geronimo.core.internal.DeploymentPlanCreationOperation">			
+			postOperationClass="org.apache.geronimo.core.operations.DeploymentPlanCreationOperation">			
 	    </operationExtension>	   
 	    <operationExtension
 			id="org.eclipse.jst.j2ee.internal.ejb.archiveoperations.EjbComponentCreationOperation"
-			postOperationClass="org.apache.geronimo.core.internal.DeploymentPlanCreationOperation">
+			postOperationClass="org.apache.geronimo.core.operations.DeploymentPlanCreationOperation">
 		</operationExtension>		
 		<operationExtension
 			id="org.eclipse.jst.j2ee.application.internal.operations.EARComponentCreationOperation"
-			postOperationClass="org.apache.geronimo.core.internal.DeploymentPlanCreationOperation">
+			postOperationClass="org.apache.geronimo.core.operations.DeploymentPlanCreationOperation">
 		</operationExtension>	
 	    <operationExtension
 			id="org.eclipse.jst.j2ee.internal.jca.operations.ConnectorComponentCreationOperation"
-			postOperationClass="org.apache.geronimo.core.internal.DeploymentPlanCreationOperation">
+			postOperationClass="org.apache.geronimo.core.operations.DeploymentPlanCreationOperation">
 		</operationExtension>
+		
+		<operationExtension
+			id="org.eclipse.jst.j2ee.internal.web.archive.operations.WebComponentImportOperation"
+			postOperationClass="org.apache.geronimo.core.operations.ImportDeploymentPlanOperation">
+		</operationExtension>		
    </extension>
    
 </plugin>

Copied: geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/src/org/apache/geronimo/core/operations/DeploymentPlanCreationOperation.java (from r315071, geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/src/org/apache/geronimo/core/internal/DeploymentPlanCreationOperation.java)
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/src/org/apache/geronimo/core/operations/DeploymentPlanCreationOperation.java?p2=geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/src/org/apache/geronimo/core/operations/DeploymentPlanCreationOperation.java&p1=geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/src/org/apache/geronimo/core/internal/DeploymentPlanCreationOperation.java&r1=315071&r2=320772&rev=320772&view=diff
==============================================================================
--- geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/src/org/apache/geronimo/core/internal/DeploymentPlanCreationOperation.java (original)
+++ geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.devtools.eclipse.core/src/org/apache/geronimo/core/operations/DeploymentPlanCreationOperation.java Thu Oct 13 07:04:02 2005
@@ -13,11 +13,13 @@
  *  See the License for the specific language governing permissions and
  *  limitations under the License.
  */
-package org.apache.geronimo.core.internal;
+package org.apache.geronimo.core.operations;
 
 import java.io.IOException;
 import java.util.Collections;
 
+import org.apache.geronimo.core.internal.GeronimoSchemaNS;
+import org.apache.geronimo.core.internal.GeronimoUtils;
 import org.apache.geronimo.xml.ns.j2ee.application.ApplicationFactory;
 import org.apache.geronimo.xml.ns.j2ee.application.ApplicationType;
 import org.apache.geronimo.xml.ns.j2ee.connector.ConnectorFactory;