]> source.dussan.org Git - archiva.git/blob
319df0f232238e60ec474b00039cbb60bd741192
[archiva.git] /
1 package org.apache.archiva.metadata.repository;
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.metadata.model.ArtifactMetadata;
23 import org.apache.archiva.metadata.model.ProjectVersionMetadata;
24 import org.apache.archiva.metadata.model.ProjectVersionReference;
25 import org.springframework.stereotype.Service;
26
27 import java.util.Collection;
28
29 // FIXME: remove - this is useless, better to mock it or avoid needing it
30 @Service( "metadataResolver#test" )
31 public class TestMetadataResolver
32     implements MetadataResolver
33 {
34     public ProjectVersionMetadata resolveProjectVersion( RepositorySession session, String repoId, String namespace,
35                                                          String projectId, String projectVersion )
36         throws MetadataResolutionException
37     {
38         return null;  //To change body of implemented methods use File | Settings | File Templates.
39     }
40
41     public Collection<ProjectVersionReference> resolveProjectReferences( RepositorySession session, String repoId,
42                                                                          String namespace, String projectId,
43                                                                          String projectVersion )
44         throws MetadataResolutionException
45     {
46         return null;  //To change body of implemented methods use File | Settings | File Templates.
47     }
48
49     public Collection<String> resolveRootNamespaces( RepositorySession session, String repoId )
50         throws MetadataResolutionException
51     {
52         return null;  //To change body of implemented methods use File | Settings | File Templates.
53     }
54
55     public Collection<String> resolveNamespaces( RepositorySession session, String repoId, String namespace )
56         throws MetadataResolutionException
57     {
58         return null;  //To change body of implemented methods use File | Settings | File Templates.
59     }
60
61     public Collection<String> resolveProjects( RepositorySession session, String repoId, String namespace )
62         throws MetadataResolutionException
63     {
64         return null;  //To change body of implemented methods use File | Settings | File Templates.
65     }
66
67     public Collection<String> resolveProjectVersions( RepositorySession session, String repoId, String namespace,
68                                                       String projectId )
69         throws MetadataResolutionException
70     {
71         return null;  //To change body of implemented methods use File | Settings | File Templates.
72     }
73
74     public Collection<ArtifactMetadata> resolveArtifacts( RepositorySession session, String repoId, String namespace,
75                                                           String projectId, String projectVersion )
76         throws MetadataResolutionException
77     {
78         return null;  //To change body of implemented methods use File | Settings | File Templates.
79     }
80 }