]> source.dussan.org Git - archiva.git/blob
ea51c9e319bdf7fce6ac2a1e2a9aeeae5b65666c
[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.ArrayList;
23 import java.util.Collection;
24 import java.util.Date;
25 import java.util.HashMap;
26 import java.util.List;
27 import java.util.Map;
28
29 import org.apache.archiva.metadata.model.ArtifactMetadata;
30 import org.apache.archiva.metadata.model.MetadataFacet;
31 import org.apache.archiva.metadata.model.ProjectMetadata;
32 import org.apache.archiva.metadata.model.ProjectVersionMetadata;
33 import org.apache.archiva.metadata.model.ProjectVersionReference;
34
35 public class TestMetadataRepository
36     extends TestMetadataResolver
37     implements MetadataRepository
38 {
39     private Map<String, MetadataFacet> facets = new HashMap<String, MetadataFacet>();
40
41     public void updateProject( String repoId, ProjectMetadata project )
42     {
43         //To change body of implemented methods use File | Settings | File Templates.
44     }
45
46     public void updateArtifact( String repoId, String namespace, String projectId, String projectVersion,
47                                 ArtifactMetadata artifactMeta )
48     {
49         //To change body of implemented methods use File | Settings | File Templates.
50     }
51
52     public void updateProjectVersion( String repoId, String namespace, String projectId, ProjectVersionMetadata versionMetadata )
53     {
54         //To change body of implemented methods use File | Settings | File Templates.
55     }
56
57     public void updateProjectReference( String repoId, String namespace, String projectId, String projectVersion,
58                                         ProjectVersionReference reference )
59     {
60         //To change body of implemented methods use File | Settings | File Templates.
61     }
62
63     public void updateNamespace( String repoId, String namespace )
64     {
65         //To change body of implemented methods use File | Settings | File Templates.
66     }
67
68     public List<String> getMetadataFacets( String repoId, String facetId )
69     {
70         return new ArrayList<String>( facets.keySet() );
71     }
72
73     public MetadataFacet getMetadataFacet( String repositoryId, String facetId, String name )
74     {
75         return facets.get( name );
76     }
77
78     public void addMetadataFacet( String repositoryId, MetadataFacet metadataFacet )
79     {
80         facets.put( metadataFacet.getName(), metadataFacet );
81     }
82
83     public void removeMetadataFacets( String repositoryId, String facetId )
84     {
85         facets.clear();
86     }
87
88     public void removeMetadataFacet( String repoId, String facetId, String name )
89     {
90         //To change body of implemented methods use File | Settings | File Templates.
91     }
92
93     public List<ArtifactMetadata> getArtifactsByDateRange( String repoId, Date startTime, Date endTime )
94     {
95         return null;  //To change body of implemented methods use File | Settings | File Templates.
96     }
97
98     public Collection<String> getRepositories()
99     {
100         return null;  //To change body of implemented methods use File | Settings | File Templates.
101     }
102
103     public List<ArtifactMetadata> getArtifactsByChecksum( String repoId, String checksum )
104     {
105         return null;  //To change body of implemented methods use File | Settings | File Templates.
106     }
107
108     public void deleteArtifact( String repositoryId, String namespace, String project, String version, String id )
109     {
110         //To change body of implemented methods use File | Settings | File Templates.
111     }
112
113     public void deleteRepository( String repoId )
114     {
115         //To change body of implemented methods use File | Settings | File Templates.
116     }
117 }