]> source.dussan.org Git - archiva.git/blob
26bc8592ef13e2b86aeef7167702a71bd9a945ab
[archiva.git] /
1 package org.apache.archiva.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.AuditInformation;
22 import org.apache.archiva.admin.model.RepositoryAdminException;
23 import org.apache.archiva.admin.model.beans.RemoteRepository;
24 import org.apache.archiva.admin.model.remote.RemoteRepositoryAdmin;
25 import org.apache.archiva.configuration.ArchivaConfiguration;
26
27 import java.util.List;
28 import java.util.Map;
29
30 /**
31  * @author Olivier Lamy
32  */
33 public class MockRemoteRepositoryAdmin
34     implements RemoteRepositoryAdmin
35 {
36     private ArchivaConfiguration archivaConfiguration;
37
38     @Override
39     public List<RemoteRepository> getRemoteRepositories()
40         throws RepositoryAdminException
41     {
42         return null;  //To change body of implemented methods use File | Settings | File Templates.
43     }
44
45     @Override
46     public RemoteRepository getRemoteRepository( String repositoryId )
47         throws RepositoryAdminException
48     {
49         return null;  //To change body of implemented methods use File | Settings | File Templates.
50     }
51
52     @Override
53     public Boolean deleteRemoteRepository( String repositoryId, AuditInformation auditInformation )
54         throws RepositoryAdminException
55     {
56         return null;  //To change body of implemented methods use File | Settings | File Templates.
57     }
58
59     @Override
60     public Boolean addRemoteRepository( RemoteRepository remoteRepository, AuditInformation auditInformation )
61         throws RepositoryAdminException
62     {
63         return null;  //To change body of implemented methods use File | Settings | File Templates.
64     }
65
66     @Override
67     public Boolean updateRemoteRepository( RemoteRepository remoteRepository, AuditInformation auditInformation )
68         throws RepositoryAdminException
69     {
70         return null;  //To change body of implemented methods use File | Settings | File Templates.
71     }
72
73     @Override
74     public Map<String, RemoteRepository> getRemoteRepositoriesAsMap()
75         throws RepositoryAdminException
76     {
77         return null;  //To change body of implemented methods use File | Settings | File Templates.
78     }
79
80     public ArchivaConfiguration getArchivaConfiguration()
81     {
82         return archivaConfiguration;
83     }
84
85     public void setArchivaConfiguration( ArchivaConfiguration archivaConfiguration )
86     {
87         this.archivaConfiguration = archivaConfiguration;
88     }
89
90 }