1 package org.apache.archiva.web.xmlrpc.api;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
22 import java.util.List;
24 import com.atlassian.xmlrpc.ServiceObject;
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.ManagedRepositoryConfiguration;
29 @ServiceObject( "AdministrationService" )
30 public interface AdministrationService
33 * Executes repository scanner on the given repository.
35 * @param repoId id of the repository to be scanned
39 public Boolean executeRepositoryScanner( String repoId )
43 * Gets all available repository consumers.
47 public List<String> getAllRepositoryConsumers();
49 // TODO should we already implement config of consumers per repository?
51 * Configures (enable or disable) repository consumer.
59 public Boolean configureRepositoryConsumer( String repoId, String consumerId, boolean enable )
63 * Gets all managed repositories.
67 public List<ManagedRepository> getAllManagedRepositories();
70 * Gets all remote repositories.
74 public List<RemoteRepository> getAllRemoteRepositories();
77 * Deletes given artifact from the specified repository.
79 * @param repoId id of the repository where the artifact to be deleted resides
80 * @param groupId groupId of the artifact to be deleted
81 * @param artifactId artifactId of the artifact to be deleted
82 * @param version version of the artifact to be deleted
86 public Boolean deleteArtifact( String repoId, String groupId, String artifactId, String version )
90 * Create a new managed repository with the given parameters.
96 * @param blockRedeployments
97 * @param releasesIncluded
98 * @param snapshotsIncluded
99 * @param cronExpression
103 public Boolean addManagedRepository( String repoId, String layout, String name, String location,
104 boolean blockRedeployments, boolean releasesIncluded,
105 boolean snapshotsIncluded, String cronExpression )
109 * Deletes a managed repository with the given repository id.
114 public Boolean deleteManagedRepository( String repoId )
118 * Get a managed repository with the given repository id.
123 public ManagedRepository getManagedRepository(String repoId) throws Exception;
125 // consider the following as additional services:
126 // - getAllConfiguredRepositoryConsumers( String repoId ) - list all enabled consumers for the repo
127 // - getAllConfiguredDatabaseConsumers() - list all enabled db consumers