]> source.dussan.org Git - archiva.git/blob
55305ca091aa2d943317182a857071cd1c310dc6
[archiva.git] /
1 package org.apache.archiva.repository.maven2;
2
3 import org.apache.archiva.indexer.ArchivaIndexingContext;
4 import org.apache.archiva.repository.AbstractRemoteRepository;
5 import org.apache.archiva.repository.ReleaseScheme;
6 import org.apache.archiva.repository.RemoteRepository;
7 import org.apache.archiva.repository.RepositoryCapabilities;
8 import org.apache.archiva.repository.RepositoryType;
9 import org.apache.archiva.repository.StandardCapabilities;
10 import org.apache.archiva.repository.UnsupportedFeatureException;
11 import org.apache.archiva.repository.features.IndexCreationFeature;
12 import org.apache.archiva.repository.features.RemoteIndexFeature;
13 import org.apache.archiva.repository.features.RepositoryFeature;
14 import org.slf4j.Logger;
15 import org.slf4j.LoggerFactory;
16
17 import java.io.IOException;
18 import java.nio.file.Path;
19 import java.util.Locale;
20
21 /*
22  * Licensed to the Apache Software Foundation (ASF) under one
23  * or more contributor license agreements.  See the NOTICE file
24  * distributed with this work for additional information
25  * regarding copyright ownership.  The ASF licenses this file
26  * to you under the Apache License, Version 2.0 (the
27  * "License"); you may not use this file except in compliance
28  * with the License.  You may obtain a copy of the License at
29  *
30  *  http://www.apache.org/licenses/LICENSE-2.0
31  *
32  * Unless required by applicable law or agreed to in writing,
33  * software distributed under the License is distributed on an
34  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
35  * KIND, either express or implied.  See the License for the
36  * specific language governing permissions and limitations
37  * under the License.
38  */
39
40 /**
41  * Maven2 remote repository implementation
42  */
43 public class MavenRemoteRepository extends AbstractRemoteRepository
44     implements RemoteRepository
45 {
46
47     Logger log = LoggerFactory.getLogger(MavenRemoteRepository.class);
48
49     final private RemoteIndexFeature remoteIndexFeature = new RemoteIndexFeature();
50     final private IndexCreationFeature indexCreationFeature;
51
52     private static final RepositoryCapabilities CAPABILITIES = new StandardCapabilities(
53         new ReleaseScheme[] { ReleaseScheme.RELEASE, ReleaseScheme.SNAPSHOT },
54         new String[] { MavenManagedRepository.DEFAULT_LAYOUT, MavenManagedRepository.LEGACY_LAYOUT},
55         new String[] {},
56         new String[] {RemoteIndexFeature.class.getName(), IndexCreationFeature.class.getName()},
57         true,
58         true,
59         true,
60         true,
61         false
62     );
63
64     public MavenRemoteRepository( String id, String name, Path basePath )
65     {
66         super( RepositoryType.MAVEN, id, name, basePath );
67         this.indexCreationFeature = new IndexCreationFeature(this, this);
68
69     }
70
71     public MavenRemoteRepository( Locale primaryLocale, String id, String name, Path basePath )
72     {
73         super( primaryLocale, RepositoryType.MAVEN, id, name, basePath );
74         this.indexCreationFeature = new IndexCreationFeature(this, this);
75     }
76
77     @Override
78     public boolean hasIndex( )
79     {
80         return remoteIndexFeature.hasIndex();
81     }
82
83     @Override
84     public RepositoryCapabilities getCapabilities( )
85     {
86         return CAPABILITIES;
87     }
88
89     @Override
90     public <T extends RepositoryFeature<T>> RepositoryFeature<T> getFeature( Class<T> clazz ) throws UnsupportedFeatureException
91     {
92         if (RemoteIndexFeature.class.equals( clazz )) {
93             return (RepositoryFeature<T>) remoteIndexFeature;
94         } else if (IndexCreationFeature.class.equals(clazz)) {
95             return (RepositoryFeature<T>) indexCreationFeature;
96         } else {
97             throw new UnsupportedFeatureException(  );
98         }
99     }
100
101     @Override
102     public <T extends RepositoryFeature<T>> boolean supportsFeature( Class<T> clazz )
103     {
104         if ( RemoteIndexFeature.class.equals(clazz) || IndexCreationFeature.class.equals(clazz)) {
105             return true;
106         } else {
107             return false;
108         }
109     }
110
111
112 }