]> source.dussan.org Git - archiva.git/blob
7400f48f18e4fe7aeee799d2a59d62e016389a35
[archiva.git] /
1 package org.apache.archiva.web.xmlrpc.services;
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.List;
23
24 import org.apache.archiva.web.xmlrpc.api.AdministrationService;
25 import org.apache.archiva.web.xmlrpc.api.beans.ManagedRepository;
26 import org.apache.archiva.web.xmlrpc.api.beans.RemoteRepository;
27 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
28 import org.apache.maven.archiva.configuration.Configuration;
29
30 public class AdministrationServiceImpl
31     implements AdministrationService
32 {
33     /**
34      * @plexus.requirement
35      */
36     private ArchivaConfiguration archivaConfiguration;
37     
38     public boolean configureDatabaseConsumer( String consumerId, boolean enable )
39     {
40         //Configuration config = archivaConfiguration.getConfiguration();
41         
42         
43         // TODO Auto-generated method stub
44         return false;
45     }
46
47     public boolean configureRepositoryConsumer( String repoId, String consumerId, boolean enable )
48     {
49         // TODO Auto-generated method stub
50         return false;
51     }
52
53     public boolean deleteArtifact( String repoId, String groupId, String artifactId, String version )
54     {
55         // TODO Auto-generated method stub
56         return false;
57     }
58
59     public boolean executeDatabaseScanner()
60     {
61         // TODO Auto-generated method stub
62         return false;
63     }
64
65     public boolean executeRepositoryScanner( String repoId )
66     {
67         // TODO Auto-generated method stub
68         return false;
69     }
70
71     public List<String> getAllDatabaseConsumers()
72     {
73         // TODO Auto-generated method stub
74         return null;
75     }
76
77     public List<String> getAllRepositoryConsumers()
78     {
79         // TODO Auto-generated method stub
80         return null;
81     }
82
83     public List<ManagedRepository> getAllManagedRepositories()
84     {
85         return null;
86     }
87
88     public List<RemoteRepository> getAllRemoteRepositories()
89     {
90         return null;
91     }
92 }