]> source.dussan.org Git - archiva.git/blob
c424881051828bef121782ac873ca2e2319b0ac9
[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.Date;
25 import java.util.List;
26
27 import org.apache.archiva.metadata.model.ArtifactMetadata;
28 import org.apache.archiva.metadata.model.MetadataFacet;
29 import org.apache.archiva.metadata.model.ProjectMetadata;
30 import org.apache.archiva.metadata.model.ProjectVersionMetadata;
31 import org.apache.archiva.metadata.model.ProjectVersionReference;
32
33 public class TestMetadataRepository
34     implements MetadataRepository
35 {
36     public ProjectMetadata getProject( String repoId, String namespace, String projectId )
37     {
38         return null;  //To change body of implemented methods use File | Settings | File Templates.
39     }
40
41     public ProjectVersionMetadata getProjectVersion( String repoId, String namespace, String projectId,
42                                                      String projectVersion )
43         throws MetadataResolverException
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         throws MetadataResolverException
77     {
78         return null;  //To change body of implemented methods use File | Settings | File Templates.
79     }
80
81     public void updateProject( String repoId, ProjectMetadata project )
82     {
83         //To change body of implemented methods use File | Settings | File Templates.
84     }
85
86     public void updateArtifact( String repoId, String namespace, String projectId, String projectVersion,
87                                 ArtifactMetadata artifactMeta )
88     {
89         //To change body of implemented methods use File | Settings | File Templates.
90     }
91
92     public void updateProjectVersion( String repoId, String namespace, String projectId,
93                                       ProjectVersionMetadata versionMetadata )
94     {
95         //To change body of implemented methods use File | Settings | File Templates.
96     }
97
98     public void updateProjectReference( String repoId, String namespace, String projectId, String projectVersion,
99                                         ProjectVersionReference reference )
100     {
101         //To change body of implemented methods use File | Settings | File Templates.
102     }
103
104     public void updateNamespace( String repoId, String namespace )
105     {
106         //To change body of implemented methods use File | Settings | File Templates.
107     }
108
109     public List<String> getMetadataFacets( String repodId, String facetId )
110     {
111         return Collections.emptyList();
112     }
113
114     public MetadataFacet getMetadataFacet( String repositoryId, String facetId, String name )
115     {
116         return null;  //To change body of implemented methods use File | Settings | File Templates.
117     }
118
119     public void addMetadataFacet( String repositoryId, MetadataFacet metadataFacet )
120     {
121         //To change body of implemented methods use File | Settings | File Templates.
122     }
123
124     public void removeMetadataFacets( String repositoryId, String facetId )
125     {
126         //To change body of implemented methods use File | Settings | File Templates.
127     }
128
129     public void removeMetadataFacet( String repoId, String facetId, String name )
130     {
131         //To change body of implemented methods use File | Settings | File Templates.
132     }
133
134     public List<ArtifactMetadata> getArtifactsByDateRange( String repoId, Date startTime, Date endTime )
135     {
136         return null;  //To change body of implemented methods use File | Settings | File Templates.
137     }
138
139     public Collection<String> getRepositories()
140     {
141         return null;  //To change body of implemented methods use File | Settings | File Templates.
142     }
143
144     public List<ArtifactMetadata> getArtifactsByChecksum( String repoId, String checksum )
145     {
146         return null;  //To change body of implemented methods use File | Settings | File Templates.
147     }
148
149     public Collection<ArtifactMetadata> getArtifacts( String repoId, String namespace, String projectId,
150                                                       String projectVersion )
151     {
152         return null;  //To change body of implemented methods use File | Settings | File Templates.
153     }
154 }