1 package org.apache.archiva.metadata.repository;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
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;
27 import java.util.Collection;
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
34 public ProjectVersionMetadata resolveProjectVersion( RepositorySession session, String repoId, String namespace,
35 String projectId, String projectVersion )
36 throws MetadataResolutionException
38 return null; //To change body of implemented methods use File | Settings | File Templates.
41 public Collection<ProjectVersionReference> resolveProjectReferences( RepositorySession session, String repoId,
42 String namespace, String projectId,
43 String projectVersion )
44 throws MetadataResolutionException
46 return null; //To change body of implemented methods use File | Settings | File Templates.
49 public Collection<String> resolveRootNamespaces( RepositorySession session, String repoId )
50 throws MetadataResolutionException
52 return null; //To change body of implemented methods use File | Settings | File Templates.
55 public Collection<String> resolveNamespaces( RepositorySession session, String repoId, String namespace )
56 throws MetadataResolutionException
58 return null; //To change body of implemented methods use File | Settings | File Templates.
61 public Collection<String> resolveProjects( RepositorySession session, String repoId, String namespace )
62 throws MetadataResolutionException
64 return null; //To change body of implemented methods use File | Settings | File Templates.
67 public Collection<String> resolveProjectVersions( RepositorySession session, String repoId, String namespace,
69 throws MetadataResolutionException
71 return null; //To change body of implemented methods use File | Settings | File Templates.
74 public Collection<ArtifactMetadata> resolveArtifacts( RepositorySession session, String repoId, String namespace,
75 String projectId, String projectVersion )
76 throws MetadataResolutionException
78 return null; //To change body of implemented methods use File | Settings | File Templates.