]> source.dussan.org Git - archiva.git/blob
5cd2ef4727c0426d33399ceae9c5b4ac8938a202
[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 java.util.Collection;
23 import java.util.Collections;
24 import java.util.List;
25
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;
31
32 public class TestMetadataRepository
33     implements MetadataRepository
34 {
35     public ProjectMetadata getProject( String repoId, String namespace, String projectId )
36     {
37         return null;  //To change body of implemented methods use File | Settings | File Templates.
38     }
39
40     public ProjectVersionMetadata getProjectVersion( String repoId, String namespace, String projectId,
41                                                      String projectVersion )
42         throws MetadataResolverException
43     {
44         return null;  //To change body of implemented methods use File | Settings | File Templates.
45     }
46
47     public Collection<String> getArtifactVersions( String repoId, String namespace, String projectId,
48                                                    String projectVersion )
49     {
50         return null;  //To change body of implemented methods use File | Settings | File Templates.
51     }
52
53     public Collection<ProjectVersionReference> getProjectReferences( String repoId, String namespace, String projectId,
54                                                                      String projectVersion )
55     {
56         return null;  //To change body of implemented methods use File | Settings | File Templates.
57     }
58
59     public Collection<String> getRootNamespaces( String repoId )
60     {
61         return null;  //To change body of implemented methods use File | Settings | File Templates.
62     }
63
64     public Collection<String> getNamespaces( String repoId, String namespace )
65     {
66         return null;  //To change body of implemented methods use File | Settings | File Templates.
67     }
68
69     public Collection<String> getProjects( String repoId, String namespace )
70     {
71         return null;  //To change body of implemented methods use File | Settings | File Templates.
72     }
73
74     public Collection<String> getProjectVersions( String repoId, String namespace, String projectId )
75         throws MetadataResolverException
76     {
77         return null;  //To change body of implemented methods use File | Settings | File Templates.
78     }
79
80     public void updateProject( String repoId, ProjectMetadata project )
81     {
82         //To change body of implemented methods use File | Settings | File Templates.
83     }
84
85     public void updateArtifact( String repoId, String namespace, String projectId, String projectVersion,
86                                 ArtifactMetadata artifactMeta )
87     {
88         //To change body of implemented methods use File | Settings | File Templates.
89     }
90
91     public void updateProjectVersion( String repoId, String namespace, String projectId, ProjectVersionMetadata versionMetadata )
92     {
93         //To change body of implemented methods use File | Settings | File Templates.
94     }
95
96     public void updateProjectReference( String repoId, String namespace, String projectId, String projectVersion,
97                                         ProjectVersionReference reference )
98     {
99         //To change body of implemented methods use File | Settings | File Templates.
100     }
101
102     public void updateNamespace( String repoId, String namespace )
103     {
104         //To change body of implemented methods use File | Settings | File Templates.
105     }
106
107     public List<String> getMetadataFacets( String repodId, String facetId )
108     {
109         return Collections.emptyList();
110     }
111
112     public MetadataFacet getMetadataFacet( String repositoryId, String facetId, String name )
113     {
114         return null;  //To change body of implemented methods use File | Settings | File Templates.
115     }
116
117     public void addMetadataFacet( String repositoryId, String facetId, String name, MetadataFacet metadataFacet )
118     {
119         //To change body of implemented methods use File | Settings | File Templates.
120     }
121
122     public void removeMetadataFacets( String repositoryId, String facetId )
123     {
124         //To change body of implemented methods use File | Settings | File Templates.
125     }
126 }