[jboss-cvs] JBossAS SVN: r74263 - trunk/ejb3/src/main/org/jboss/ejb3/deployers.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jun 6 11:24:42 EDT 2008


Author: alesj
Date: 2008-06-06 11:24:42 -0400 (Fri, 06 Jun 2008)
New Revision: 74263

Removed:
   trunk/ejb3/src/main/org/jboss/ejb3/deployers/JBoss5PersistenceUnitParsingDeployer.java
Log:
Deleting duplicate deployer.

Deleted: trunk/ejb3/src/main/org/jboss/ejb3/deployers/JBoss5PersistenceUnitParsingDeployer.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/ejb3/deployers/JBoss5PersistenceUnitParsingDeployer.java	2008-06-06 15:20:11 UTC (rev 74262)
+++ trunk/ejb3/src/main/org/jboss/ejb3/deployers/JBoss5PersistenceUnitParsingDeployer.java	2008-06-06 15:24:42 UTC (rev 74263)
@@ -1,50 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, Red Hat Middleware LLC, and individual contributors
- * by the @authors tag. See the copyright.txt 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.ejb3.deployers;
-
-import org.jboss.deployers.vfs.spi.deployer.SchemaResolverDeployer;
-import org.jboss.metadata.jpa.spec.PersistenceMetaData;
-
-/**
- * Find and parse persistence.xml.
- * 
- * In a jar:
- * META-INF/persistence.xml
- * 
- * In a war (JPA 6.2):
- * WEB-INF/classes/META-INF/persistence.xml
- *
- * @author <a href="mailto:carlo.dewolf at jboss.com">Carlo de Wolf</a>
- * @author <a href="mailto:ales.justin at jboss.com">Ales Justin</a>
- * @version $Revision: 72433 $
- */
-public class JBoss5PersistenceUnitParsingDeployer extends SchemaResolverDeployer<PersistenceMetaData>
-{
-   public JBoss5PersistenceUnitParsingDeployer()
-   {
-      super(PersistenceMetaData.class);
-      setName("persistence.xml");
-      setRegisterWithJBossXB(true);
-   }
-
-}
-




More information about the jboss-cvs-commits mailing list