]> source.dussan.org Git - archiva.git/blob
e71be304b2cbc2129a4b433ddef50e47585c3b51
[archiva.git] /
1 package org.apache.maven.repository.indexing;
2
3 /*
4  * Copyright 2001-2005 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 import java.util.HashMap;
21 import java.util.Map;
22 import org.apache.maven.artifact.Artifact;
23 import org.apache.maven.artifact.repository.ArtifactRepository;
24
25 /**
26  *
27  * @author Edwin Punzalan
28  */
29 public class DefaultRepositoryIndexerFactory
30     implements RepositoryIndexerFactory
31 {
32     Map indexerMap = new HashMap();
33     
34     public RepositoryIndexer getArtifactRepositoryIndexer( String indexPath, ArtifactRepository repository )
35         throws RepositoryIndexerException
36     {
37         RepositoryIndexer indexer;
38
39         if ( !indexerMap.containsKey( "Artifact" ) )
40         {
41             indexer = new ArtifactRepositoryIndexer( repository, indexPath );
42             
43             indexerMap.put( "Artifact", indexer );
44         }
45
46         return (RepositoryIndexer) indexerMap.get( "Artifact" );
47     }
48 }