]> source.dussan.org Git - archiva.git/blob
ffdba32da04c634ac76df4027b90ae28fc2d544e
[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 getRepositoryIndexer( ArtifactRepository repository, Class indexType )
35     {
36         if ( !indexerMap.containsKey( indexType ) )
37         {
38             RepositoryIndexer indexer;
39             
40             if ( Artifact.class == indexType )
41             {
42                 indexer = new ArtifactRepositoryIndexer(  );
43             }
44             else
45             {
46                 indexer = null;
47             }
48             
49             indexerMap.put( indexType, indexer );
50         }
51
52         return (RepositoryIndexer) indexerMap.get( indexType );
53     }
54 }