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>
|
<component>
|
||||||
<role>org.apache.archiva.redback.keys.KeyManager</role>
|
<role>org.apache.archiva.redback.keys.KeyManager</role>
|
||||||
<role-hint>cached</role-hint>
|
<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>
|
<description>CachedKeyManager</description>
|
||||||
<requirements>
|
<requirements>
|
||||||
<requirement>
|
<requirement>
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
<component>
|
<component>
|
||||||
<role>org.apache.archiva.redback.keys.KeyManager</role>
|
<role>org.apache.archiva.redback.keys.KeyManager</role>
|
||||||
<role-hint>cached</role-hint>
|
<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>
|
<description>CachedKeyManager</description>
|
||||||
<requirements>
|
<requirements>
|
||||||
<requirement>
|
<requirement>
|
||||||
|
|
|
@ -117,14 +117,14 @@
|
||||||
</component>
|
</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"/>
|
<property name="keyImpl" ref="keyManager#memory"/>
|
||||||
</bean>
|
</bean>
|
||||||
<!--
|
<!--
|
||||||
<component>
|
<component>
|
||||||
<role>org.apache.archiva.redback.keys.KeyManager</role>
|
<role>org.apache.archiva.redback.keys.KeyManager</role>
|
||||||
<role-hint>cached</role-hint>
|
<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>
|
<description>CachedKeyManager</description>
|
||||||
<requirements>
|
<requirements>
|
||||||
<requirement>
|
<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
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
<context:annotation-config />
|
<context:annotation-config />
|
||||||
<context:component-scan
|
<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"
|
<bean name="cache#keys" class="org.codehaus.plexus.cache.ehcache.EhcacheCache"
|
||||||
init-method="initialize">
|
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
|
* 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 net.sf.ehcache.CacheManager;
|
||||||
import org.apache.archiva.redback.keys.KeyManager;
|
import org.apache.archiva.redback.keys.KeyManager;
|
||||||
|
import org.apache.archiva.redback.keys.cached.CachedKeyManager;
|
||||||
import org.codehaus.plexus.redback.keys.KeyManagerTestCase;
|
import org.codehaus.plexus.redback.keys.KeyManagerTestCase;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
|
|
Loading…
Reference in New Issue