SEC-1132: Refactoring to remove package cycles in ACL module.

This commit is contained in:
Luke Taylor
2009-04-15 10:04:45 +00:00
parent 93bdcccaee
commit d5f5b0860e
11 changed files with 47 additions and 44 deletions

View File

@@ -1,4 +1,4 @@
package org.springframework.security.acls;
package org.springframework.security.acls.expression;
import static org.junit.Assert.assertTrue;
@@ -9,6 +9,9 @@ import org.jmock.Mockery;
import org.jmock.integration.junit4.JUnit4Mockery;
import org.junit.Before;
import org.junit.Test;
import org.springframework.security.acls.Acl;
import org.springframework.security.acls.AclService;
import org.springframework.security.acls.expression.AclPermissionEvaluator;
import org.springframework.security.acls.objectidentity.ObjectIdentity;
import org.springframework.security.acls.objectidentity.ObjectIdentityRetrievalStrategy;
import org.springframework.security.acls.sid.SidRetrievalStrategy;

View File

@@ -3,7 +3,6 @@ package org.springframework.security.acls.objectidentity;
import static org.junit.Assert.*;
import org.junit.Test;
import org.springframework.security.acls.IdentityUnavailableException;
/**
* Tests for {@link ObjectIdentityImpl}.