djencks 2005/04/15 01:36:54
Modified:
modules/openejb-builder/src/test/org/openejb/deployment/entity/cmp/ejbql
EJBQLTest.java
Log:
GERONIMO-632 Application-wide JACC GBean
Revision Changes Path
1.10 +4 -6
openejb/modules/openejb-builder/src/test/org/openejb/deployment/entity/cmp/ejbql/EJBQLTest.java
Index: EJBQLTest.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/openejb-builder/src/test/org/openejb/deployment/entity/cmp/ejbql/EJBQLTest.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- EJBQLTest.java 15 Mar 2005 05:32:44 -0000 1.9
+++ EJBQLTest.java 15 Apr 2005 05:36:54 -0000 1.10
@@ -85,7 +85,6 @@
import org.openejb.deployment.MockConnectionProxyFactory;
import org.openejb.deployment.OpenEJBModuleBuilder;
import org.openejb.dispatch.InterfaceMethodSignature;
-import org.openejb.security.SecurityConfiguration;
import org.openejb.transaction.TransactionPolicySource;
import org.openejb.transaction.TransactionPolicyType;
import org.openejb.xbeans.ejbjar.OpenejbOpenejbJarDocument;
@@ -140,7 +139,7 @@
ALocal a = aLocalHome.selectTest("test");
assertEquals(new Integer(1), a.getField1());
}
-
+
private void buildDBSchema(Connection c) throws Exception {
Statement s = c.createStatement();
try {
@@ -148,9 +147,9 @@
} catch (SQLException e) {
// ignore
}
-
+
s.execute("CREATE TABLE A(A1 INTEGER, A2 VARCHAR(50))");
-
+
s.execute("INSERT INTO A(A1, A2) VALUES(1, 'test')");
s.close();
c.close();
@@ -248,7 +247,6 @@
}
});
- builder.setSecurityConfiguration(new SecurityConfiguration());
builder.setEJBSchema(ejbSchema);
builder.setSQLSchema(sqlSchema);
builder.setGlobalSchema(cacheSchema);