View Javadoc
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      @Override
35      public ProjectVersionMetadata resolveProjectVersion( RepositorySession session, String repoId, String namespace,
36                                                           String projectId, String projectVersion )
37          throws MetadataResolutionException
38      {
39          return null;
40      }
41  
42      @Override
43      public Collection<ProjectVersionReference> resolveProjectReferences( RepositorySession session, String repoId,
44                                                                           String namespace, String projectId,
45                                                                           String projectVersion )
46          throws MetadataResolutionException
47      {
48          return null;
49      }
50  
51      @Override
52      public Collection<String> resolveRootNamespaces( RepositorySession session, String repoId )
53          throws MetadataResolutionException
54      {
55          return null;
56      }
57  
58      @Override
59      public Collection<String> resolveNamespaces( RepositorySession session, String repoId, String namespace )
60          throws MetadataResolutionException
61      {
62          return null;
63      }
64  
65      @Override
66      public Collection<String> resolveProjects( RepositorySession session, String repoId, String namespace )
67          throws MetadataResolutionException
68      {
69          return null;
70      }
71  
72      @Override
73      public Collection<String> resolveProjectVersions( RepositorySession session, String repoId, String namespace,
74                                                        String projectId )
75          throws MetadataResolutionException
76      {
77          return null;
78      }
79  
80      @Override
81      public Collection<ArtifactMetadata> resolveArtifacts( RepositorySession session, String repoId, String namespace,
82                                                            String projectId, String projectVersion )
83          throws MetadataResolutionException
84      {
85          return null;
86      }
87  }