[jboss-cvs] JBossAS SVN: r83899 - projects/jboss-seam-int/trunk/microcontainer/src/main/java/org/jboss/seam/integration/microcontainer/deployers.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Feb 5 08:43:23 EST 2009


Author: alesj
Date: 2009-02-05 08:43:23 -0500 (Thu, 05 Feb 2009)
New Revision: 83899

Added:
   projects/jboss-seam-int/trunk/microcontainer/src/main/java/org/jboss/seam/integration/microcontainer/deployers/SeamUnjarModificationTypeMatcher.java
Removed:
   projects/jboss-seam-int/trunk/microcontainer/src/main/java/org/jboss/seam/integration/microcontainer/deployers/SeamExplodeModificationTypeMatcher.java
Log:
Remove explode matcher, change to unjar.

Deleted: projects/jboss-seam-int/trunk/microcontainer/src/main/java/org/jboss/seam/integration/microcontainer/deployers/SeamExplodeModificationTypeMatcher.java
===================================================================
--- projects/jboss-seam-int/trunk/microcontainer/src/main/java/org/jboss/seam/integration/microcontainer/deployers/SeamExplodeModificationTypeMatcher.java	2009-02-05 13:40:58 UTC (rev 83898)
+++ projects/jboss-seam-int/trunk/microcontainer/src/main/java/org/jboss/seam/integration/microcontainer/deployers/SeamExplodeModificationTypeMatcher.java	2009-02-05 13:43:23 UTC (rev 83899)
@@ -1,37 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2008, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.seam.integration.microcontainer.deployers;
-
-import org.jboss.deployers.vfs.plugins.structure.modify.ExplodeTopModificationTypeMatcher;
-
-/**
- * Enable temp modification for Seam apps.
- *
- * @author <a href="mailto:ales.justin at jboss.org">Ales Justin</a>
- */
-public class SeamExplodeModificationTypeMatcher extends ExplodeTopModificationTypeMatcher
-{
-   public SeamExplodeModificationTypeMatcher()
-   {
-      super(SeamConstants.SEAM_FILES);
-   }
-}
\ No newline at end of file

Copied: projects/jboss-seam-int/trunk/microcontainer/src/main/java/org/jboss/seam/integration/microcontainer/deployers/SeamUnjarModificationTypeMatcher.java (from rev 83879, projects/jboss-seam-int/trunk/microcontainer/src/main/java/org/jboss/seam/integration/microcontainer/deployers/SeamExplodeModificationTypeMatcher.java)
===================================================================
--- projects/jboss-seam-int/trunk/microcontainer/src/main/java/org/jboss/seam/integration/microcontainer/deployers/SeamUnjarModificationTypeMatcher.java	                        (rev 0)
+++ projects/jboss-seam-int/trunk/microcontainer/src/main/java/org/jboss/seam/integration/microcontainer/deployers/SeamUnjarModificationTypeMatcher.java	2009-02-05 13:43:23 UTC (rev 83899)
@@ -0,0 +1,37 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.seam.integration.microcontainer.deployers;
+
+import org.jboss.deployers.vfs.plugins.structure.modify.UnjarTopModificationTypeMatcher;
+
+/**
+ * Enable unjar modification for Seam apps.
+ *
+ * @author <a href="mailto:ales.justin at jboss.org">Ales Justin</a>
+ */
+public class SeamUnjarModificationTypeMatcher extends UnjarTopModificationTypeMatcher
+{
+   public SeamUnjarModificationTypeMatcher()
+   {
+      super(SeamConstants.SEAM_FILES);
+   }
+}
\ No newline at end of file




More information about the jboss-cvs-commits mailing list