]> source.dussan.org Git - archiva.git/blob
4db51d33d40066b632035262274808c8d16b7bf1
[archiva.git] /
1 package org.apache.archiva.scheduler.repository.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  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied.  See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19
20 import org.apache.archiva.admin.model.AuditInformation;
21 import org.apache.archiva.admin.model.RepositoryAdminException;
22 import org.apache.archiva.admin.model.beans.RemoteRepository;
23 import org.apache.archiva.admin.model.remote.RemoteRepositoryAdmin;
24 import org.apache.archiva.configuration.ArchivaConfiguration;
25
26 import java.util.List;
27 import java.util.Map;
28
29 /**
30  * @author Olivier Lamy
31  */
32 public class MockRemoteRepositoryAdmin
33     implements RemoteRepositoryAdmin
34 {
35     private ArchivaConfiguration archivaConfiguration;
36
37     @Override
38     public List<RemoteRepository> getRemoteRepositories()
39         throws RepositoryAdminException
40     {
41         return null;  //To change body of implemented methods use File | Settings | File Templates.
42     }
43
44     @Override
45     public RemoteRepository getRemoteRepository( String repositoryId )
46         throws RepositoryAdminException
47     {
48         return null;  //To change body of implemented methods use File | Settings | File Templates.
49     }
50
51     @Override
52     public Boolean deleteRemoteRepository( String repositoryId, AuditInformation auditInformation )
53         throws RepositoryAdminException
54     {
55         return null;  //To change body of implemented methods use File | Settings | File Templates.
56     }
57
58     @Override
59     public Boolean addRemoteRepository( RemoteRepository remoteRepository, AuditInformation auditInformation )
60         throws RepositoryAdminException
61     {
62         return null;  //To change body of implemented methods use File | Settings | File Templates.
63     }
64
65     @Override
66     public Boolean updateRemoteRepository( RemoteRepository remoteRepository, AuditInformation auditInformation )
67         throws RepositoryAdminException
68     {
69         return null;  //To change body of implemented methods use File | Settings | File Templates.
70     }
71
72     @Override
73     public Map<String, RemoteRepository> getRemoteRepositoriesAsMap()
74         throws RepositoryAdminException
75     {
76         return null;  //To change body of implemented methods use File | Settings | File Templates.
77     }
78
79     public ArchivaConfiguration getArchivaConfiguration()
80     {
81         return archivaConfiguration;
82     }
83
84     public void setArchivaConfiguration( ArchivaConfiguration archivaConfiguration )
85     {
86         this.archivaConfiguration = archivaConfiguration;
87     }
88
89 }