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