]> source.dussan.org Git - archiva.git/blob
8ef9d791392b1fd34db590a2943a8725306afe03
[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
26 import java.util.Collection;
27
28 public class TestMetadataResolver
29     implements MetadataResolver
30 {
31     public ProjectVersionMetadata resolveProjectVersion( String repoId, String namespace, String projectId,
32                                                          String projectVersion )
33     {
34         return null;  //To change body of implemented methods use File | Settings | File Templates.
35     }
36
37     public Collection<ProjectVersionReference> resolveProjectReferences( String repoId, String namespace,
38                                                                          String projectId, String projectVersion )
39     {
40         return null;  //To change body of implemented methods use File | Settings | File Templates.
41     }
42
43     public Collection<String> resolveRootNamespaces( String repoId )
44     {
45         return null;  //To change body of implemented methods use File | Settings | File Templates.
46     }
47
48     public Collection<String> resolveNamespaces( String repoId, String namespace )
49     {
50         return null;  //To change body of implemented methods use File | Settings | File Templates.
51     }
52
53     public Collection<String> resolveProjects( String repoId, String namespace )
54     {
55         return null;  //To change body of implemented methods use File | Settings | File Templates.
56     }
57
58     public Collection<String> resolveProjectVersions( String repoId, String namespace, String projectId )
59     {
60         return null;  //To change body of implemented methods use File | Settings | File Templates.
61     }
62
63     public Collection<ArtifactMetadata> resolveArtifacts( String repoId, String namespace, String projectId,
64                                                           String projectVersion )
65     {
66         return null;  //To change body of implemented methods use File | Settings | File Templates.
67     }
68 }