Remove (ticket) cache package from CAS module. Unnecesary and has a circular reference.

This commit is contained in:
Luke Taylor
2009-07-17 23:33:55 +00:00
parent 1afa67c954
commit 83da7be2ea
7 changed files with 7 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
package org.springframework.security.cas.authentication.cache;
package org.springframework.security.cas.authentication;
import java.util.ArrayList;
import java.util.List;

View File

@@ -13,7 +13,7 @@
* limitations under the License.
*/
package org.springframework.security.cas.authentication.cache;
package org.springframework.security.cas.authentication;
import net.sf.ehcache.Ehcache;
import net.sf.ehcache.CacheManager;
@@ -23,7 +23,7 @@ import org.junit.Test;
import org.junit.BeforeClass;
import org.junit.AfterClass;
import org.springframework.security.cas.authentication.CasAuthenticationToken;
import org.springframework.security.cas.authentication.cache.EhCacheBasedTicketCache;
import org.springframework.security.cas.authentication.EhCacheBasedTicketCache;
import static org.junit.Assert.*;

View File

@@ -12,13 +12,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.security.cas.authentication.cache;
package org.springframework.security.cas.authentication;
import org.junit.Test;
import org.springframework.security.cas.authentication.CasAuthenticationToken;
import org.springframework.security.cas.authentication.NullStatelessTicketCache;
import org.springframework.security.cas.authentication.StatelessTicketCache;
import org.springframework.security.cas.authentication.cache.NullStatelessTicketCache;
import static org.junit.Assert.*;