]> source.dussan.org Git - archiva.git/blob
b07884a74b96bd7051f505aad9bc3625db4ba8ea
[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;
40     }
41
42     public ProjectVersionMetadata getProjectVersion( String repoId, String namespace, String projectId,
43                                                      String projectVersion )
44     {
45         return null;
46     }
47
48     public Collection<String> getArtifactVersions( String repoId, String namespace, String projectId,
49                                                    String projectVersion )
50     {
51         return null;
52     }
53
54     public Collection<ProjectVersionReference> getProjectReferences( String repoId, String namespace, String projectId,
55                                                                      String projectVersion )
56     {
57         return null;
58     }
59
60     public Collection<String> getRootNamespaces( String repoId )
61     {
62         return null;
63     }
64
65     public Collection<String> getNamespaces( String repoId, String namespace )
66     {
67         return null;
68     }
69
70     public Collection<String> getProjects( String repoId, String namespace )
71     {
72         return null;
73     }
74
75     public Collection<String> getProjectVersions( String repoId, String namespace, String projectId )
76     {
77         return null;
78     }
79
80     public void updateProject( String repoId, ProjectMetadata project )
81     {
82     }
83
84     public void updateArtifact( String repoId, String namespace, String projectId, String projectVersion,
85                                 ArtifactMetadata artifactMeta )
86     {
87
88     }
89
90     public void updateProjectVersion( String repoId, String namespace, String projectId,
91                                       ProjectVersionMetadata versionMetadata )
92     {
93
94     }
95
96     public void updateNamespace( String repoId, String namespace )
97     {
98
99     }
100
101     public List<String> getMetadataFacets( String repodId, String facetId )
102     {
103         return Collections.emptyList();
104     }
105
106     public MetadataFacet getMetadataFacet( String repositoryId, String facetId, String name )
107     {
108         return null;
109     }
110
111     public void addMetadataFacet( String repositoryId, MetadataFacet metadataFacet )
112     {
113
114     }
115
116     public void removeMetadataFacets( String repositoryId, String facetId )
117     {
118
119     }
120
121     public void removeMetadataFacet( String repoId, String facetId, String name )
122     {
123
124     }
125
126     public List<ArtifactMetadata> getArtifactsByDateRange( String repoId, Date startTime, Date endTime )
127     {
128         return null;
129     }
130
131     public Collection<String> getRepositories()
132     {
133         return null;
134     }
135
136     public List<ArtifactMetadata> getArtifactsByChecksum( String repoId, String checksum )
137     {
138         return null;
139     }
140
141     public void removeArtifact( String repositoryId, String namespace, String project, String version, String id )
142     {
143
144     }
145
146     public void removeRepository( String repoId )
147     {
148
149     }
150
151     public Collection<ArtifactMetadata> getArtifacts( String repoId, String namespace, String projectId,
152                                                       String projectVersion )
153     {
154         return null;
155     }
156
157     public void save()
158     {
159
160     }
161
162     public void close()
163     {
164
165     }
166
167     public void revert()
168     {
169
170     }
171
172     public boolean canObtainAccess( Class<?> aClass )
173     {
174         return false;
175     }
176
177     public Object obtainAccess( Class<?> aClass )
178     {
179         return null;
180     }
181
182     public List<ArtifactMetadata> getArtifacts( String repositoryId )
183     {
184         return null;
185     }
186
187     public void removeArtifact( String repositoryId, String namespace, String project, String version,
188                                 MetadataFacet metadataFacet )
189         throws MetadataRepositoryException
190     {
191         throw new UnsupportedOperationException();
192     }
193
194     public void removeArtifact( ArtifactMetadata artifactMetadata, String baseVersion )
195         throws MetadataRepositoryException
196     {
197         throw new UnsupportedOperationException();
198     }
199
200     public void removeNamespace( String repositoryId, String namespace )
201         throws MetadataRepositoryException
202     {
203
204     }
205
206     public void removeProjectVersion( String repoId, String namespace, String projectId, String projectVersion )
207         throws MetadataRepositoryException
208     {
209
210     }
211
212     public void removeProject( String repositoryId, String namespace, String projectId )
213         throws MetadataRepositoryException
214     {
215         throw new UnsupportedOperationException();
216     }
217
218     public boolean hasMetadataFacet( String repositoryId, String facetId )
219         throws MetadataRepositoryException
220     {
221         return false;
222     }
223
224 }