]> source.dussan.org Git - archiva.git/blob
8f885c23a81064c6eeac46f63d5b93c5383eb02f
[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.Collections;
34 import java.util.HashSet;
35 import java.util.Locale;
36 import java.util.Set;
37
38 /**
39  * Maven2 managed repository implementation.
40  */
41 public class MavenManagedRepository extends AbstractManagedRepository
42 {
43     public static final String DEFAULT_LAYOUT = "default";
44     public static final String LEGACY_LAYOUT = "legacy";
45     private ArtifactCleanupFeature artifactCleanupFeature = new ArtifactCleanupFeature( );
46     private IndexCreationFeature indexCreationFeature = new IndexCreationFeature(  );
47     private StagingRepositoryFeature stagingRepositoryFeature = new StagingRepositoryFeature(  );
48
49     private static final RepositoryCapabilities CAPABILITIES = new StandardCapabilities(
50         new ReleaseScheme[] { ReleaseScheme.RELEASE, ReleaseScheme.SNAPSHOT },
51         new String[] { DEFAULT_LAYOUT, LEGACY_LAYOUT},
52         new String[] {},
53         new String[] {ArtifactCleanupFeature.class.getName(), IndexCreationFeature.class.getName(),
54             StagingRepositoryFeature.class.getName()},
55         true,
56         true,
57         true,
58         true,
59         false
60     );
61
62     public MavenManagedRepository( String id, String name )
63     {
64         super( RepositoryType.MAVEN, id, name );
65     }
66
67     public MavenManagedRepository( Locale primaryLocale, String id, String name )
68     {
69         super( primaryLocale, RepositoryType.MAVEN, id, name );
70     }
71
72     @Override
73     public RepositoryCapabilities getCapabilities( )
74     {
75         return CAPABILITIES;
76     }
77
78     @Override
79     public <T extends RepositoryFeature<T>> RepositoryFeature<T> getFeature( Class<T> clazz ) throws UnsupportedFeatureException
80     {
81         if (ArtifactCleanupFeature.class.equals( clazz ))
82         {
83             return (RepositoryFeature<T>) artifactCleanupFeature;
84         } else if (IndexCreationFeature.class.equals(clazz)) {
85             return (RepositoryFeature<T>) indexCreationFeature;
86         } else if (StagingRepositoryFeature.class.equals(clazz)) {
87             return (RepositoryFeature<T>) stagingRepositoryFeature;
88         } else {
89             throw new UnsupportedFeatureException(  );
90         }
91     }
92
93     @Override
94     public <T extends RepositoryFeature<T>> boolean supportsFeature( Class<T> clazz )
95     {
96         if (ArtifactCleanupFeature.class.equals(clazz) ||
97             IndexCreationFeature.class.equals(clazz) ||
98             StagingRepositoryFeature.class.equals(clazz)) {
99             return true;
100         }
101         return false;
102     }
103
104
105
106
107 }