]> source.dussan.org Git - archiva.git/blob
fc861402c4c191ed2e8b66fb28627d2a57c3e8d0
[archiva.git] /
1 package org.apache.archiva.rest.api.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 org.apache.archiva.admin.model.beans.RemoteRepository;
23 import org.apache.archiva.security.common.ArchivaRoleConstants;
24 import org.apache.archiva.redback.authorization.RedbackAuthorization;
25
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;
34
35 /**
36  * @author Olivier Lamy
37  * @since 1.4-M1
38  */
39 @Path( "/remoteRepositoriesService/" )
40 public interface RemoteRepositoriesService
41 {
42     @Path( "getRemoteRepositories" )
43     @GET
44     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
45     @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
46     List<RemoteRepository> getRemoteRepositories()
47         throws ArchivaRestServiceException;
48
49     @Path( "getRemoteRepository/{repositoryId}" )
50     @GET
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;
55
56     @Path( "deleteRemoteRepository/{repositoryId}" )
57     @GET
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 )
61         throws Exception;
62
63
64     @Path( "addRemoteRepository" )
65     @POST
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 )
70         throws Exception;
71
72
73     @Path( "updateRemoteRepository" )
74     @POST
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 )
79         throws Exception;
80
81
82 }