]> source.dussan.org Git - archiva.git/blob
f100aa191b07bbe1f8154663f0533cd16b4d17ac
[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 org.apache.archiva.metadata.model.ArtifactMetadata;
23 import org.apache.archiva.metadata.model.MetadataFacet;
24 import org.apache.archiva.metadata.model.ProjectMetadata;
25 import org.apache.archiva.metadata.model.ProjectVersionMetadata;
26 import org.apache.archiva.metadata.model.ProjectVersionReference;
27
28 import java.util.Collection;
29 import java.util.Collections;
30 import java.util.Date;
31 import java.util.List;
32
33 // TODO: remove, it does nothing
34 public class TestMetadataRepository
35     implements MetadataRepository
36 {
37     public ProjectMetadata getProject( String repoId, String namespace, String projectId )
38     {
39         return null;  //To change body of implemented methods use File | Settings | File Templates.
40     }
41
42     public ProjectVersionMetadata getProjectVersion( String repoId, String namespace, String projectId,
43                                                      String projectVersion )
44     {
45         return null;  //To change body of implemented methods use File | Settings | File Templates.
46     }
47
48     public Collection<String> getArtifactVersions( String repoId, String namespace, String projectId,
49                                                    String projectVersion )
50     {
51         return null;  //To change body of implemented methods use File | Settings | File Templates.
52     }
53
54     public Collection<ProjectVersionReference> getProjectReferences( String repoId, String namespace, String projectId,
55                                                                      String projectVersion )
56     {
57         return null;  //To change body of implemented methods use File | Settings | File Templates.
58     }
59
60     public Collection<String> getRootNamespaces( String repoId )
61     {
62         return null;  //To change body of implemented methods use File | Settings | File Templates.
63     }
64
65     public Collection<String> getNamespaces( String repoId, String namespace )
66     {
67         return null;  //To change body of implemented methods use File | Settings | File Templates.
68     }
69
70     public Collection<String> getProjects( String repoId, String namespace )
71     {
72         return null;  //To change body of implemented methods use File | Settings | File Templates.
73     }
74
75     public Collection<String> getProjectVersions( String repoId, String namespace, String projectId )
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,
92                                       ProjectVersionMetadata versionMetadata )
93     {
94         //To change body of implemented methods use File | Settings | File Templates.
95     }
96
97     public void updateProjectReference( String repoId, String namespace, String projectId, String projectVersion,
98                                         ProjectVersionReference reference )
99     {
100         //To change body of implemented methods use File | Settings | File Templates.
101     }
102
103     public void updateNamespace( String repoId, String namespace )
104     {
105         //To change body of implemented methods use File | Settings | File Templates.
106     }
107
108     public List<String> getMetadataFacets( String repodId, String facetId )
109     {
110         return Collections.emptyList();
111     }
112
113     public MetadataFacet getMetadataFacet( String repositoryId, String facetId, String name )
114     {
115         return null;  //To change body of implemented methods use File | Settings | File Templates.
116     }
117
118     public void addMetadataFacet( String repositoryId, MetadataFacet metadataFacet )
119     {
120         //To change body of implemented methods use File | Settings | File Templates.
121     }
122
123     public void removeMetadataFacets( String repositoryId, String facetId )
124     {
125         //To change body of implemented methods use File | Settings | File Templates.
126     }
127
128     public void removeMetadataFacet( String repoId, String facetId, String name )
129     {
130         //To change body of implemented methods use File | Settings | File Templates.
131     }
132
133     public List<ArtifactMetadata> getArtifactsByDateRange( String repoId, Date startTime, Date endTime )
134     {
135         return null;  //To change body of implemented methods use File | Settings | File Templates.
136     }
137
138     public Collection<String> getRepositories()
139     {
140         return null;  //To change body of implemented methods use File | Settings | File Templates.
141     }
142
143     public List<ArtifactMetadata> getArtifactsByChecksum( String repoId, String checksum )
144     {
145         return null;  //To change body of implemented methods use File | Settings | File Templates.
146     }
147
148     public void removeArtifact( String repositoryId, String namespace, String project, String version, String id )
149     {
150         //To change body of implemented methods use File | Settings | File Templates.
151     }
152
153     public void removeRepository( String repoId )
154     {
155         //To change body of implemented methods use File | Settings | File Templates.
156     }
157
158     public Collection<ArtifactMetadata> getArtifacts( String repoId, String namespace, String projectId,
159                                                       String projectVersion )
160     {
161         return null;  //To change body of implemented methods use File | Settings | File Templates.
162     }
163
164     public void save()
165     {
166         //To change body of implemented methods use File | Settings | File Templates.
167     }
168
169     public void close()
170     {
171         //To change body of implemented methods use File | Settings | File Templates.
172     }
173
174     public void revert()
175     {
176         //To change body of implemented methods use File | Settings | File Templates.
177     }
178
179     public List<ArtifactMetadata> getArtifacts( String repositoryId )
180     {
181         return null;
182     }
183 }