org.apache.maven.plugin
Class DefaultPluginRealmCache
java.lang.Object
org.apache.maven.plugin.DefaultPluginRealmCache
- All Implemented Interfaces:
- PluginRealmCache
@Component(role=PluginRealmCache.class)
public class DefaultPluginRealmCache
- extends Object
- implements PluginRealmCache
Default PluginCache implementation. Assumes cached data does not change.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
cache
protected final Map<PluginRealmCache.Key,PluginRealmCache.CacheRecord> cache
DefaultPluginRealmCache
public DefaultPluginRealmCache()
createKey
public PluginRealmCache.Key createKey(Plugin plugin,
ClassLoader parentRealm,
List<String> parentImports,
org.sonatype.aether.graph.DependencyFilter dependencyFilter,
List<org.sonatype.aether.repository.RemoteRepository> repositories,
org.sonatype.aether.RepositorySystemSession session)
- Specified by:
createKey
in interface PluginRealmCache
get
public PluginRealmCache.CacheRecord get(PluginRealmCache.Key key)
- Specified by:
get
in interface PluginRealmCache
put
public PluginRealmCache.CacheRecord put(PluginRealmCache.Key key,
ClassRealm pluginRealm,
List<Artifact> pluginArtifacts)
- Specified by:
put
in interface PluginRealmCache
flush
public void flush()
- Specified by:
flush
in interface PluginRealmCache
pluginHashCode
protected static int pluginHashCode(Plugin plugin)
pluginEquals
protected static boolean pluginEquals(Plugin a,
Plugin b)
register
public void register(MavenProject project,
PluginRealmCache.CacheRecord record)
- Description copied from interface:
PluginRealmCache
- Registers the specified cache record for usage with the given project. Integrators can use the information
collected from this method in combination with a custom cache implementation to dispose unused records from the
cache.
- Specified by:
register
in interface PluginRealmCache
- Parameters:
project
- The project that employs the plugin realm, must not be null
.record
- The cache record being used for the project, must not be null
.
Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.