1 package org.apache.archiva.rest.api.services;
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 org.apache.archiva.admin.model.beans.RemoteRepository;
23 import org.apache.archiva.security.common.ArchivaRoleConstants;
24 import org.apache.archiva.redback.authorization.RedbackAuthorization;
26 import javax.ws.rs.Consumes;
27 import javax.ws.rs.GET;
28 import javax.ws.rs.POST;
29 import javax.ws.rs.Path;
30 import javax.ws.rs.PathParam;
31 import javax.ws.rs.Produces;
32 import javax.ws.rs.core.MediaType;
33 import java.util.List;
36 * @author Olivier Lamy
39 @Path( "/remoteRepositoriesService/" )
40 public interface RemoteRepositoriesService
42 @Path( "getRemoteRepositories" )
44 @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
45 @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
46 List<RemoteRepository> getRemoteRepositories()
47 throws ArchivaRestServiceException;
49 @Path( "getRemoteRepository/{repositoryId}" )
51 @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
52 @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
53 RemoteRepository getRemoteRepository( @PathParam( "repositoryId" ) String repositoryId )
54 throws ArchivaRestServiceException;
56 @Path( "deleteRemoteRepository/{repositoryId}" )
58 @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
59 @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
60 Boolean deleteRemoteRepository( @PathParam( "repositoryId" ) String repositoryId )
64 @Path( "addRemoteRepository" )
66 @Consumes( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
67 @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
68 @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
69 Boolean addRemoteRepository( RemoteRepository remoteRepository )
73 @Path( "updateRemoteRepository" )
75 @Consumes( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
76 @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
77 @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
78 Boolean updateRemoteRepository( RemoteRepository remoteRepository )