2
0
Fork 0

renamed better

This commit is contained in:
Willem Cazander 2011-12-31 00:07:21 +01:00
parent cc6331b7fe
commit a523cc9122
289 changed files with 2546 additions and 1608 deletions

View file

@ -2,17 +2,17 @@
<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-xpql-ejb3</artifactId>
<version>0.3.5-SNAPSHOT</version>
<name>vasc-xpql-ejb3</name>
<description>xpql parsing service for ejb3</description>
<dependencies>
<dependency>
<groupId>org.x4o.vasc</groupId>
<groupId>net.forwardfire.vasc</groupId>
<artifactId>vasc-xpql</artifactId>
<version>0.3.5-SNAPSHOT</version>
</dependency>

View file

@ -1,5 +1,5 @@
package org.x4o.vasc.xpql.ejb3;
package net.forwardfire.vasc.xpql.ejb3;
import java.util.List;
import java.util.Map;
@ -7,7 +7,7 @@ import java.util.Map;
import javax.ejb.Local;
import javax.ejb.Remote;
import org.x4o.vasc.xpql.query.Query;
import net.forwardfire.vasc.xpql.query.Query;
/**

View file

@ -1,5 +1,5 @@
package org.x4o.vasc.xpql.ejb3;
package net.forwardfire.vasc.xpql.ejb3;
import java.io.IOException;
import java.io.InputStream;
@ -20,10 +20,11 @@ import javax.naming.InitialContext;
import javax.persistence.EntityManager;
import javax.transaction.UserTransaction;
import org.x4o.vasc.xpql.QueryStore;
import org.x4o.vasc.xpql.XPQLParser;
import org.x4o.vasc.xpql.query.Query;
import org.x4o.vasc.xpql.query.QueryParameterValue;
import net.forwardfire.vasc.xpql.QueryStore;
import net.forwardfire.vasc.xpql.XPQLParser;
import net.forwardfire.vasc.xpql.query.Query;
import net.forwardfire.vasc.xpql.query.QueryParameterValue;
/**