renamed better
This commit is contained in:
parent
cc6331b7fe
commit
a523cc9122
289 changed files with 2546 additions and 1608 deletions
|
|
@ -2,22 +2,22 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>vasc</artifactId>
|
||||
<groupId>org.x4o.vasc</groupId>
|
||||
<groupId>net.forwardfire.vasc</groupId>
|
||||
<version>0.3.5-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.x4o.vasc</groupId>
|
||||
<groupId>net.forwardfire.vasc</groupId>
|
||||
<artifactId>vasc-ejb3</artifactId>
|
||||
<version>0.3.5-SNAPSHOT</version>
|
||||
<name>vasc-ejb3</name>
|
||||
<description>vasc-ejb3</description>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.x4o.vasc</groupId>
|
||||
<groupId>net.forwardfire.vasc</groupId>
|
||||
<artifactId>vasc-core</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.x4o.vasc</groupId>
|
||||
<groupId>net.forwardfire.vasc</groupId>
|
||||
<artifactId>vasc-backend-jpa</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.x4o.vasc</groupId>
|
||||
<groupId>net.forwardfire.vasc</groupId>
|
||||
<artifactId>vasc-xpql-ejb3</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<scope>provided</scope>
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
* should not be interpreted as representing official policies, either expressed or implied, of IDCA.
|
||||
*/
|
||||
|
||||
package org.x4o.vasc.ejb3;
|
||||
package net.forwardfire.vasc.ejb3;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
|
@ -32,7 +32,7 @@ import java.util.Map;
|
|||
import javax.ejb.Local;
|
||||
import javax.ejb.Remote;
|
||||
|
||||
import org.x4o.vasc.core.VascEntry;
|
||||
import net.forwardfire.vasc.core.VascEntry;
|
||||
|
||||
|
||||
/**
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
* should not be interpreted as representing official policies, either expressed or implied, of IDCA.
|
||||
*/
|
||||
|
||||
package org.x4o.vasc.ejb3;
|
||||
package net.forwardfire.vasc.ejb3;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
|
|
@ -50,24 +50,25 @@ import javax.persistence.EntityManager;
|
|||
|
||||
|
||||
|
||||
import org.x4o.vasc.backends.jpa.EntityManagerProvider;
|
||||
import org.x4o.vasc.core.VascBackend;
|
||||
import org.x4o.vasc.core.VascBackendControllerLocal;
|
||||
import org.x4o.vasc.core.VascController;
|
||||
import org.x4o.vasc.core.VascEntry;
|
||||
import org.x4o.vasc.impl.DefaultVascBackedEntryFinalizer;
|
||||
import org.x4o.vasc.impl.DefaultVascEntryController;
|
||||
import org.x4o.vasc.impl.DefaultVascFactory;
|
||||
import org.x4o.vasc.impl.VascBackendProxyEventExecutor;
|
||||
import org.x4o.vasc.impl.actions.AddRowAction;
|
||||
import org.x4o.vasc.impl.actions.CSVExportGlobalAction;
|
||||
import org.x4o.vasc.impl.actions.DeleteRowAction;
|
||||
import org.x4o.vasc.impl.actions.EditRowAction;
|
||||
import org.x4o.vasc.impl.actions.XMLExportGlobalAction;
|
||||
import org.x4o.vasc.impl.entry.DefaultVascEntryResourceResolver;
|
||||
import org.x4o.vasc.impl.x4o.VascParser;
|
||||
import org.x4o.vasc.xpql.ejb3.XpqlQueryManager;
|
||||
import org.x4o.vasc.xpql.query.Query;
|
||||
import net.forwardfire.vasc.backends.jpa.EntityManagerProvider;
|
||||
import net.forwardfire.vasc.core.VascBackend;
|
||||
import net.forwardfire.vasc.core.VascBackendControllerLocal;
|
||||
import net.forwardfire.vasc.core.VascController;
|
||||
import net.forwardfire.vasc.core.VascEntry;
|
||||
import net.forwardfire.vasc.impl.DefaultVascBackedEntryFinalizer;
|
||||
import net.forwardfire.vasc.impl.DefaultVascEntryController;
|
||||
import net.forwardfire.vasc.impl.DefaultVascFactory;
|
||||
import net.forwardfire.vasc.impl.VascBackendProxyEventExecutor;
|
||||
import net.forwardfire.vasc.impl.actions.AddRowAction;
|
||||
import net.forwardfire.vasc.impl.actions.CSVExportGlobalAction;
|
||||
import net.forwardfire.vasc.impl.actions.DeleteRowAction;
|
||||
import net.forwardfire.vasc.impl.actions.EditRowAction;
|
||||
import net.forwardfire.vasc.impl.actions.XMLExportGlobalAction;
|
||||
import net.forwardfire.vasc.impl.entry.DefaultVascEntryResourceResolver;
|
||||
import net.forwardfire.vasc.impl.x4o.VascParser;
|
||||
import net.forwardfire.vasc.xpql.ejb3.XpqlQueryManager;
|
||||
import net.forwardfire.vasc.xpql.query.Query;
|
||||
|
||||
import org.x4o.xml.core.AbstractX4OPhaseHandler;
|
||||
import org.x4o.xml.core.X4OPhase;
|
||||
import org.x4o.xml.core.X4OPhaseException;
|
||||
|
|
@ -313,7 +314,7 @@ public class VascServiceManagerImpl implements VascServiceManager.IRemote,VascSe
|
|||
|
||||
class DatafeedsEntityManagerProvider implements EntityManagerProvider {
|
||||
/**
|
||||
* @see org.x4o.vasc.backends.jpa.EntityManagerProvider#getEntityManager()
|
||||
* @see net.forwardfire.vasc.backends.jpa.EntityManagerProvider#getEntityManager()
|
||||
*/
|
||||
public EntityManager getEntityManager() {
|
||||
return entityManager;
|
||||
Loading…
Add table
Add a link
Reference in a new issue