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;
26 import java.util.Collection;
28 public class TestMetadataResolver
29 implements MetadataResolver
31 public ProjectVersionMetadata resolveProjectVersion( String repoId, String namespace, String projectId,
32 String projectVersion )
34 return null; //To change body of implemented methods use File | Settings | File Templates.
37 public Collection<ProjectVersionReference> resolveProjectReferences( String repoId, String namespace,
38 String projectId, String projectVersion )
40 return null; //To change body of implemented methods use File | Settings | File Templates.
43 public Collection<String> resolveRootNamespaces( String repoId )
45 return null; //To change body of implemented methods use File | Settings | File Templates.
48 public Collection<String> resolveNamespaces( String repoId, String namespace )
50 return null; //To change body of implemented methods use File | Settings | File Templates.
53 public Collection<String> resolveProjects( String repoId, String namespace )
55 return null; //To change body of implemented methods use File | Settings | File Templates.
58 public Collection<String> resolveProjectVersions( String repoId, String namespace, String projectId )
60 return null; //To change body of implemented methods use File | Settings | File Templates.
63 public Collection<ArtifactMetadata> resolveArtifacts( String repoId, String namespace, String projectId,
64 String projectVersion )
66 return null; //To change body of implemented methods use File | Settings | File Templates.