This project has retired. For details please refer to its Attic page.
RemoteRepositoriesService xref
View Javadoc
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 ArchivaRestServiceException;
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 ArchivaRestServiceException;
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 ArchivaRestServiceException;
80  
81      @Path("checkRemoteConnectivity/{repositoryId}")
82      @GET
83      @Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN })
84      @RedbackAuthorization(permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION)
85      Boolean checkRemoteConnectivity( @PathParam( "repositoryId" ) String repositoryId )
86          throws ArchivaRestServiceException;
87  }