package move to o.a.a.r module redback-keys-cached

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1310886 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-04-07 22:05:15 +00:00
parent 8ffc9b9d8f
commit 39d64883ce
6 changed files with 8 additions and 7 deletions

View File

@ -89,7 +89,7 @@
<component>
<role>org.apache.archiva.redback.keys.KeyManager</role>
<role-hint>cached</role-hint>
<implementation>org.codehaus.plexus.redback.keys.cached.CachedKeyManager</implementation>
<implementation>org.apache.archiva.redback.keys.cached.CachedKeyManager</implementation>
<description>CachedKeyManager</description>
<requirements>
<requirement>

View File

@ -89,7 +89,7 @@
<component>
<role>org.apache.archiva.redback.keys.KeyManager</role>
<role-hint>cached</role-hint>
<implementation>org.codehaus.plexus.redback.keys.cached.CachedKeyManager</implementation>
<implementation>org.apache.archiva.redback.keys.cached.CachedKeyManager</implementation>
<description>CachedKeyManager</description>
<requirements>
<requirement>

View File

@ -117,14 +117,14 @@
</component>
-->
<bean name="keyManager#cached" class="org.codehaus.plexus.redback.keys.cached.CachedKeyManager">
<bean name="keyManager#cached" class="org.apache.archiva.redback.keys.cached.CachedKeyManager">
<property name="keyImpl" ref="keyManager#memory"/>
</bean>
<!--
<component>
<role>org.apache.archiva.redback.keys.KeyManager</role>
<role-hint>cached</role-hint>
<implementation>org.codehaus.plexus.redback.keys.cached.CachedKeyManager</implementation>
<implementation>org.apache.archiva.redback.keys.cached.CachedKeyManager</implementation>
<description>CachedKeyManager</description>
<requirements>
<requirement>

View File

@ -1,4 +1,4 @@
package org.codehaus.plexus.redback.keys.cached;
package org.apache.archiva.redback.keys.cached;
/*
* Licensed to the Apache Software Foundation (ASF) under one

View File

@ -29,7 +29,7 @@
<context:annotation-config />
<context:component-scan
base-package="org.codehaus.plexus.redback.keys.cached"/>
base-package="org.apache.archiva.redback.keys.cached"/>
<bean name="cache#keys" class="org.codehaus.plexus.cache.ehcache.EhcacheCache"
init-method="initialize">

View File

@ -1,4 +1,4 @@
package org.codehaus.plexus.redback.keys.cached;
package org.apache.archiva.redback.keys.cached;
/*
* Licensed to the Apache Software Foundation (ASF) under one
@ -21,6 +21,7 @@ package org.codehaus.plexus.redback.keys.cached;
import net.sf.ehcache.CacheManager;
import org.apache.archiva.redback.keys.KeyManager;
import org.apache.archiva.redback.keys.cached.CachedKeyManager;
import org.codehaus.plexus.redback.keys.KeyManagerTestCase;
import org.junit.Before;