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