aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-modules/archiva-base/archiva-indexer/src
diff options
context:
space:
mode:
authorMaria Odea B. Ching <oching@apache.org>2009-02-20 05:09:07 +0000
committerMaria Odea B. Ching <oching@apache.org>2009-02-20 05:09:07 +0000
commitc73e639ed23e6034fcb605b6ea8f5e1692df8563 (patch)
tree29414b05f2926577560095c793c693b749090146 /archiva-modules/archiva-base/archiva-indexer/src
parent958b142c8fa99644627db73a73855bf910641f2d (diff)
downloadarchiva-c73e639ed23e6034fcb605b6ea8f5e1692df8563.tar.gz
archiva-c73e639ed23e6034fcb605b6ea8f5e1692df8563.zip
remove unused classes and empty directories
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@746141 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/archiva-base/archiva-indexer/src')
-rw-r--r--archiva-modules/archiva-base/archiva-indexer/src/test/java/org/apache/maven/archiva/indexer/MockConfiguration.java103
-rw-r--r--archiva-modules/archiva-base/archiva-indexer/src/test/resources/META-INF/plexus/components.xml22
2 files changed, 0 insertions, 125 deletions
diff --git a/archiva-modules/archiva-base/archiva-indexer/src/test/java/org/apache/maven/archiva/indexer/MockConfiguration.java b/archiva-modules/archiva-base/archiva-indexer/src/test/java/org/apache/maven/archiva/indexer/MockConfiguration.java
deleted file mode 100644
index 9ad167150..000000000
--- a/archiva-modules/archiva-base/archiva-indexer/src/test/java/org/apache/maven/archiva/indexer/MockConfiguration.java
+++ /dev/null
@@ -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;
- }
-}
diff --git a/archiva-modules/archiva-base/archiva-indexer/src/test/resources/META-INF/plexus/components.xml b/archiva-modules/archiva-base/archiva-indexer/src/test/resources/META-INF/plexus/components.xml
deleted file mode 100644
index af15697a1..000000000
--- a/archiva-modules/archiva-base/archiva-indexer/src/test/resources/META-INF/plexus/components.xml
+++ /dev/null
@@ -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>