mirror of https://github.com/apache/archiva.git
remove unused classes and empty directories
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@746141 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
958b142c8f
commit
c73e639ed2
|
@ -76,8 +76,7 @@ public abstract class AbstractRepositoryPurge
|
|||
/**
|
||||
* Purge the repo. Update db and index of removed artifacts.
|
||||
*
|
||||
* @param artifactFiles
|
||||
* @throws RepositoryIndexException
|
||||
* @param references
|
||||
*/
|
||||
protected void purge( Set<ArtifactReference> references )
|
||||
{
|
||||
|
|
|
@ -1,103 +0,0 @@
|
|||
package org.apache.maven.archiva.indexer;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.maven.archiva.configuration.ArchivaConfiguration;
|
||||
import org.apache.maven.archiva.configuration.Configuration;
|
||||
import org.apache.maven.archiva.configuration.ConfigurationListener;
|
||||
import org.codehaus.plexus.registry.Registry;
|
||||
import org.codehaus.plexus.registry.RegistryException;
|
||||
import org.codehaus.plexus.registry.RegistryListener;
|
||||
import org.easymock.MockControl;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* MockConfiguration
|
||||
*
|
||||
* @version $Id$
|
||||
*
|
||||
* @plexus.component role="org.apache.maven.archiva.configuration.ArchivaConfiguration"
|
||||
* role-hint="mock"
|
||||
*/
|
||||
public class MockConfiguration implements ArchivaConfiguration
|
||||
{
|
||||
private Configuration configuration = new Configuration();
|
||||
|
||||
private Set<RegistryListener> registryListeners = new HashSet<RegistryListener>();
|
||||
private Set<ConfigurationListener> configListeners = new HashSet<ConfigurationListener>();
|
||||
|
||||
private MockControl registryControl;
|
||||
|
||||
private Registry registryMock;
|
||||
|
||||
public MockConfiguration()
|
||||
{
|
||||
registryControl = MockControl.createNiceControl( Registry.class );
|
||||
registryMock = (Registry) registryControl.getMock();
|
||||
}
|
||||
|
||||
public void addChangeListener( RegistryListener listener )
|
||||
{
|
||||
registryListeners.add( listener );
|
||||
}
|
||||
|
||||
public Configuration getConfiguration()
|
||||
{
|
||||
return configuration;
|
||||
}
|
||||
|
||||
public void save( Configuration configuration )
|
||||
throws RegistryException
|
||||
{
|
||||
/* do nothing */
|
||||
}
|
||||
|
||||
public void triggerChange( String name, String value )
|
||||
{
|
||||
for(RegistryListener listener: registryListeners)
|
||||
{
|
||||
try
|
||||
{
|
||||
listener.afterConfigurationChange( registryMock, name, value );
|
||||
}
|
||||
catch ( Exception e )
|
||||
{
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void addListener( ConfigurationListener listener )
|
||||
{
|
||||
configListeners.add(listener);
|
||||
}
|
||||
|
||||
public void removeListener( ConfigurationListener listener )
|
||||
{
|
||||
configListeners.remove( listener );
|
||||
}
|
||||
|
||||
public boolean isDefaulted()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
<component-set>
|
||||
<components>
|
||||
<component>
|
||||
<role>org.apache.maven.archiva.configuration.ArchivaConfiguration</role>
|
||||
<role-hint>mock</role-hint>
|
||||
<implementation>org.apache.maven.archiva.indexer.MockConfiguration</implementation>
|
||||
</component>
|
||||
<component>
|
||||
<role>org.apache.maven.archiva.indexer.RepositoryContentIndexFactory</role>
|
||||
<role-hint>lucene</role-hint>
|
||||
<implementation>org.apache.maven.archiva.indexer.lucene.LuceneRepositoryContentIndexFactory</implementation>
|
||||
<description>Factory for Lucene repository content index instances.</description>
|
||||
<requirements>
|
||||
<requirement>
|
||||
<role>org.apache.maven.archiva.configuration.ArchivaConfiguration</role>
|
||||
<role-hint>mock</role-hint>
|
||||
<field-name>configuration</field-name>
|
||||
</requirement>
|
||||
</requirements>
|
||||
</component>
|
||||
</components>
|
||||
</component-set>
|
Loading…
Reference in New Issue