]> source.dussan.org Git - archiva.git/blob
3c9756f885252c0e48c4cba13a4f1c793067f2fd
[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;  //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     {
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     {
76         return null;  //To change body of implemented methods use File | Settings | File Templates.
77     }
78
79     public void updateProject( String repoId, ProjectMetadata project )
80     {
81         //To change body of implemented methods use File | Settings | File Templates.
82     }
83
84     public void updateArtifact( String repoId, String namespace, String projectId, String projectVersion,
85                                 ArtifactMetadata artifactMeta )
86     {
87         //To change body of implemented methods use File | Settings | File Templates.
88     }
89
90     public void updateProjectVersion( String repoId, String namespace, String projectId,
91                                       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, 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
127     public void removeMetadataFacet( String repoId, String facetId, String name )
128     {
129         //To change body of implemented methods use File | Settings | File Templates.
130     }
131
132     public List<ArtifactMetadata> getArtifactsByDateRange( String repoId, Date startTime, Date endTime )
133     {
134         return null;  //To change body of implemented methods use File | Settings | File Templates.
135     }
136
137     public Collection<String> getRepositories()
138     {
139         return null;  //To change body of implemented methods use File | Settings | File Templates.
140     }
141
142     public List<ArtifactMetadata> getArtifactsByChecksum( String repoId, String checksum )
143     {
144         return null;  //To change body of implemented methods use File | Settings | File Templates.
145     }
146
147     public void removeArtifact( String repositoryId, String namespace, String project, String version, String id )
148     {
149         //To change body of implemented methods use File | Settings | File Templates.
150     }
151
152     public void removeRepository( String repoId )
153     {
154         //To change body of implemented methods use File | Settings | File Templates.
155     }
156
157     public Collection<ArtifactMetadata> getArtifacts( String repoId, String namespace, String projectId,
158                                                       String projectVersion )
159     {
160         return null;  //To change body of implemented methods use File | Settings | File Templates.
161     }
162
163     public List<ArtifactMetadata> getArtifacts( String repositoryId )
164     {
165         return null;
166     }
167 }