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 java.util.Collection;
23 import java.util.Collections;
24 import java.util.List;
26 import org.apache.archiva.metadata.model.ArtifactMetadata;
27 import org.apache.archiva.metadata.model.MetadataFacet;
28 import org.apache.archiva.metadata.model.ProjectMetadata;
29 import org.apache.archiva.metadata.model.ProjectVersionMetadata;
30 import org.apache.archiva.metadata.model.ProjectVersionReference;
32 public class TestMetadataRepository
33 implements MetadataRepository
35 public ProjectMetadata getProject( String repoId, String namespace, String projectId )
37 return null; //To change body of implemented methods use File | Settings | File Templates.
40 public ProjectVersionMetadata getProjectVersion( String repoId, String namespace, String projectId,
41 String projectVersion )
42 throws MetadataResolverException
44 return null; //To change body of implemented methods use File | Settings | File Templates.
47 public Collection<String> getArtifactVersions( String repoId, String namespace, String projectId,
48 String projectVersion )
50 return null; //To change body of implemented methods use File | Settings | File Templates.
53 public Collection<ProjectVersionReference> getProjectReferences( String repoId, String namespace, String projectId,
54 String projectVersion )
56 return null; //To change body of implemented methods use File | Settings | File Templates.
59 public Collection<String> getRootNamespaces( String repoId )
61 return null; //To change body of implemented methods use File | Settings | File Templates.
64 public Collection<String> getNamespaces( String repoId, String namespace )
66 return null; //To change body of implemented methods use File | Settings | File Templates.
69 public Collection<String> getProjects( String repoId, String namespace )
71 return null; //To change body of implemented methods use File | Settings | File Templates.
74 public Collection<String> getProjectVersions( String repoId, String namespace, String projectId )
75 throws MetadataResolverException
77 return null; //To change body of implemented methods use File | Settings | File Templates.
80 public void updateProject( String repoId, ProjectMetadata project )
82 //To change body of implemented methods use File | Settings | File Templates.
85 public void updateArtifact( String repoId, String namespace, String projectId, String projectVersion,
86 ArtifactMetadata artifactMeta )
88 //To change body of implemented methods use File | Settings | File Templates.
91 public void updateProjectVersion( String repoId, String namespace, String projectId, ProjectVersionMetadata versionMetadata )
93 //To change body of implemented methods use File | Settings | File Templates.
96 public void updateProjectReference( String repoId, String namespace, String projectId, String projectVersion,
97 ProjectVersionReference reference )
99 //To change body of implemented methods use File | Settings | File Templates.
102 public void updateNamespace( String repoId, String namespace )
104 //To change body of implemented methods use File | Settings | File Templates.
107 public List<String> getMetadataFacets( String repodId, String facetId )
109 return Collections.emptyList();
112 public MetadataFacet getMetadataFacet( String repositoryId, String facetId, String name )
114 return null; //To change body of implemented methods use File | Settings | File Templates.
117 public void addMetadataFacet( String repositoryId, String facetId, String name, MetadataFacet metadataFacet )
119 //To change body of implemented methods use File | Settings | File Templates.
122 public void removeMetadataFacets( String repositoryId, String facetId )
124 //To change body of implemented methods use File | Settings | File Templates.