From 6fe569556c0f5a60d8413c128ab01bb9710a5c69 Mon Sep 17 00:00:00 2001 From: Ben Alex Date: Fri, 17 Nov 2006 03:18:07 +0000 Subject: [PATCH] Use type in same module (Maven requirement). --- .../acegisecurity/acls/jdbc/JdbcAclServiceTests.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/src/test/java/org/acegisecurity/acls/jdbc/JdbcAclServiceTests.java b/core/src/test/java/org/acegisecurity/acls/jdbc/JdbcAclServiceTests.java index 8d6c8cc651..9f04326f6e 100644 --- a/core/src/test/java/org/acegisecurity/acls/jdbc/JdbcAclServiceTests.java +++ b/core/src/test/java/org/acegisecurity/acls/jdbc/JdbcAclServiceTests.java @@ -41,7 +41,7 @@ import java.util.Map; * Integration tests the ACL system using an in-memory database. * * @author Ben Alex - * @version $Id$ + * @version $Id:JdbcAclServiceTests.java 1754 2006-11-17 02:01:21Z benalex $ */ public class JdbcAclServiceTests extends AbstractTransactionalDataSourceSpringContextTests { //~ Instance fields ================================================================================================ @@ -66,9 +66,9 @@ public class JdbcAclServiceTests extends AbstractTransactionalDataSourceSpringCo auth.setAuthenticated(true); SecurityContextHolder.getContext().setAuthentication(auth); - ObjectIdentity topParentOid = new ObjectIdentityImpl("sample.contact.Contact", new Long(100)); - ObjectIdentity middleParentOid = new ObjectIdentityImpl("sample.contact.Contact", new Long(101)); - ObjectIdentity childOid = new ObjectIdentityImpl("sample.contact.Contact", new Long(102)); + ObjectIdentity topParentOid = new ObjectIdentityImpl("org.acegisecurity.TargetObject", new Long(100)); + ObjectIdentity middleParentOid = new ObjectIdentityImpl("org.acegisecurity.TargetObject", new Long(101)); + ObjectIdentity childOid = new ObjectIdentityImpl("org.acegisecurity.TargetObject", new Long(102)); MutableAcl topParent = jdbcMutableAclService.createAcl(topParentOid); MutableAcl middleParent = jdbcMutableAclService.createAcl(middleParentOid); @@ -200,7 +200,7 @@ public class JdbcAclServiceTests extends AbstractTransactionalDataSourceSpringCo auth.setAuthenticated(true); SecurityContextHolder.getContext().setAuthentication(auth); - ObjectIdentity topParentOid = new ObjectIdentityImpl("sample.contact.Contact", new Long(110)); + ObjectIdentity topParentOid = new ObjectIdentityImpl("org.acegisecurity.TargetObject", new Long(110)); MutableAcl topParent = jdbcMutableAclService.createAcl(topParentOid); // Add an ACE permission entry