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:
parent
8ffc9b9d8f
commit
39d64883ce
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
|
@ -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">
|
||||
|
|
|
@ -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;
|
||||
|
Loading…
Reference in New Issue