]> source.dussan.org Git - archiva.git/blob
cb9d4ace999f657ca18e661f33f296d5dfae9fd7
[archiva.git] /
1 package org.apache.archiva.security.mock;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import org.apache.archiva.admin.model.beans.ManagedRepository;
22 import org.apache.archiva.metadata.model.ArtifactMetadata;
23 import org.apache.archiva.metadata.model.ProjectMetadata;
24 import org.apache.archiva.metadata.model.ProjectVersionMetadata;
25 import org.apache.archiva.metadata.repository.MetadataRepository;
26 import org.apache.archiva.metadata.repository.RepositorySession;
27 import org.apache.archiva.metadata.repository.filter.Filter;
28 import org.apache.archiva.metadata.repository.storage.ReadMetadataRequest;
29 import org.apache.archiva.metadata.repository.storage.RepositoryStorage;
30 import org.apache.archiva.metadata.repository.storage.RepositoryStorageMetadataException;
31 import org.apache.archiva.metadata.repository.storage.RepositoryStorageMetadataInvalidException;
32 import org.apache.archiva.metadata.repository.storage.RepositoryStorageMetadataNotFoundException;
33 import org.apache.archiva.metadata.repository.storage.RepositoryStorageRuntimeException;
34 import org.apache.archiva.model.ArtifactReference;
35 import org.apache.archiva.policies.ProxyDownloadException;
36 import org.apache.archiva.redback.components.taskqueue.TaskQueueException;
37 import org.apache.archiva.repository.ManagedRepositoryContent;
38 import org.apache.archiva.repository.events.RepositoryListener;
39 import org.apache.archiva.repository.layout.LayoutException;
40 import org.apache.archiva.scheduler.repository.model.RepositoryArchivaTaskScheduler;
41 import org.apache.archiva.scheduler.repository.model.RepositoryTask;
42 import org.apache.archiva.xml.XMLException;
43
44 import java.util.Collection;
45
46 /**
47  * @author Olivier Lamy
48  */
49 public class MockBeanServices
50     implements RepositoryStorage, RepositoryListener, RepositoryArchivaTaskScheduler
51 {
52     public ProjectMetadata readProjectMetadata( String repoId, String namespace, String projectId )
53     {
54         return null;
55     }
56
57     public ProjectVersionMetadata readProjectVersionMetadata( ReadMetadataRequest readMetadataRequest )
58         throws RepositoryStorageMetadataInvalidException, RepositoryStorageMetadataNotFoundException,
59         RepositoryStorageRuntimeException
60     {
61         return null;
62     }
63
64     public Collection<String> listRootNamespaces( String repoId, Filter<String> filter )
65         throws RepositoryStorageRuntimeException
66     {
67         return null;
68     }
69
70     public Collection<String> listNamespaces( String repoId, String namespace, Filter<String> filter )
71         throws RepositoryStorageRuntimeException
72     {
73         return null;
74     }
75
76     public Collection<String> listProjects( String repoId, String namespace, Filter<String> filter )
77         throws RepositoryStorageRuntimeException
78     {
79         return null;
80     }
81
82     public Collection<String> listProjectVersions( String repoId, String namespace, String projectId,
83                                                    Filter<String> filter )
84         throws RepositoryStorageRuntimeException
85     {
86         return null;
87     }
88
89     public Collection<ArtifactMetadata> readArtifactsMetadata( ReadMetadataRequest readMetadataRequest )
90         throws RepositoryStorageRuntimeException
91     {
92         return null;
93     }
94
95     public ArtifactMetadata readArtifactMetadataFromPath( String repoId, String path )
96         throws RepositoryStorageRuntimeException
97     {
98         return null;
99     }
100
101     public void applyServerSideRelocation( ManagedRepositoryContent managedRepository, ArtifactReference artifact )
102         throws ProxyDownloadException
103     {
104
105     }
106
107
108     public void deleteArtifact( MetadataRepository metadataRepository, String repositoryId, String namespace,
109                                 String project, String version, String id )
110     {
111
112     }
113
114     public void addArtifact( RepositorySession session, String repoId, String namespace, String projectId,
115                              ProjectVersionMetadata metadata )
116     {
117
118     }
119
120     public void addArtifactProblem( RepositorySession session, String repoId, String namespace, String projectId,
121                                     String projectVersion, RepositoryStorageMetadataException exception )
122     {
123
124     }
125
126
127     public boolean isProcessingRepositoryTask( String repositoryId )
128     {
129         return false;
130     }
131
132     public boolean isProcessingRepositoryTask( RepositoryTask task )
133     {
134         return false;
135     }
136
137     public void queueTask( RepositoryTask task )
138         throws TaskQueueException
139     {
140
141     }
142
143     public boolean unQueueTask( RepositoryTask task )
144         throws TaskQueueException
145     {
146         return false;
147     }
148
149     @Override
150     public String getFilePath( String requestPath, ManagedRepository managedRepository )
151     {
152         return null;
153     }
154
155     @Override
156     public String getFilePathWithVersion( String requestPath, ManagedRepositoryContent managedRepositoryContent )
157         throws LayoutException, XMLException
158     {
159         return null;
160     }
161 }