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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jun 5 19:58:13 EDT 2008


Author: scott.stark at jboss.org
Date: 2008-06-05 19:58:13 -0400 (Thu, 05 Jun 2008)
New Revision: 74217

Added:
   trunk/ejb3/src/main/org/jboss/ejb3/deployers/JBoss5PersistenceUnitParsingDeployer.java
Log:
New parsing deployer for PersistenceMetaData

Added: trunk/ejb3/src/main/org/jboss/ejb3/deployers/JBoss5PersistenceUnitParsingDeployer.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/ejb3/deployers/JBoss5PersistenceUnitParsingDeployer.java	                        (rev 0)
+++ trunk/ejb3/src/main/org/jboss/ejb3/deployers/JBoss5PersistenceUnitParsingDeployer.java	2008-06-05 23:58:13 UTC (rev 74217)
@@ -0,0 +1,53 @@
+/*
+ * 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.logging.Logger;
+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>
+{
+   private static final Logger log = Logger.getLogger(PersistenceUnitParsingDeployer.class);
+
+   public JBoss5PersistenceUnitParsingDeployer()
+   {
+      super(PersistenceMetaData.class);
+      setName("persistence.xml");
+      setRegisterWithJBossXB(true);
+   }
+
+}
+




More information about the jboss-cvs-commits mailing list