This project has retired. For details please refer to its Attic page.
Source code
001package org.apache.archiva.rest.api.services;
002/*
003 * Licensed to the Apache Software Foundation (ASF) under one
004 * or more contributor license agreements.  See the NOTICE file
005 * distributed with this work for additional information
006 * regarding copyright ownership.  The ASF licenses this file
007 * to you under the Apache License, Version 2.0 (the
008 * "License"); you may not use this file except in compliance
009 * with the License.  You may obtain a copy of the License at
010 *
011 *   http://www.apache.org/licenses/LICENSE-2.0
012 *
013 * Unless required by applicable law or agreed to in writing,
014 * software distributed under the License is distributed on an
015 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
016 * KIND, either express or implied.  See the License for the
017 * specific language governing permissions and limitations
018 * under the License.
019 */
020
021import org.apache.archiva.admin.model.beans.RepositoryGroup;
022import org.apache.archiva.redback.authorization.RedbackAuthorization;
023import org.apache.archiva.security.common.ArchivaRoleConstants;
024
025import javax.ws.rs.Consumes;
026import javax.ws.rs.GET;
027import javax.ws.rs.POST;
028import javax.ws.rs.Path;
029import javax.ws.rs.PathParam;
030import javax.ws.rs.Produces;
031import javax.ws.rs.QueryParam;
032import javax.ws.rs.core.MediaType;
033import java.util.List;
034
035/**
036 * @author Olivier Lamy
037 * @since 1.4-M1
038 */
039@Path( "/repositoryGroupService/" )
040public interface RepositoryGroupService
041{
042    @Path( "getRepositoriesGroups" )
043    @GET
044    @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
045    @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
046    List<RepositoryGroup> getRepositoriesGroups()
047        throws ArchivaRestServiceException;
048
049    @Path( "getRepositoryGroup/{repositoryGroupId}" )
050    @GET
051    @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
052    @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
053    RepositoryGroup getRepositoryGroup( @PathParam( "repositoryGroupId" ) String repositoryGroupId )
054        throws ArchivaRestServiceException;
055
056    @Path( "addRepositoryGroup" )
057    @POST
058    @Consumes( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
059    @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
060    @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
061    Boolean addRepositoryGroup( RepositoryGroup repositoryGroup )
062        throws ArchivaRestServiceException;
063
064    @Path( "updateRepositoryGroup" )
065    @POST
066    @Consumes( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
067    @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
068    @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
069    Boolean updateRepositoryGroup( RepositoryGroup repositoryGroup )
070        throws ArchivaRestServiceException;
071
072    @Path( "deleteRepositoryGroup/{repositoryGroupId}" )
073    @GET
074    @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
075    @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
076    Boolean deleteRepositoryGroup( @PathParam( "repositoryGroupId" ) String repositoryGroupId )
077        throws ArchivaRestServiceException;
078
079    @Path( "addRepositoryToGroup" )
080    @GET
081    @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
082    @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
083    Boolean addRepositoryToGroup( @QueryParam( "repositoryGroupId" ) String repositoryGroupId,
084                                  @QueryParam( "repositoryId" ) String repositoryId )
085        throws ArchivaRestServiceException;
086
087    @Path( "addRepositoryToGroup" )
088    @GET
089    @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
090    @RedbackAuthorization( permissions = ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION )
091    Boolean deleteRepositoryFromGroup( @QueryParam( "repositoryGroupId" ) String repositoryGroupId,
092                                       @QueryParam( "repositoryId" ) String repositoryId )
093        throws ArchivaRestServiceException;
094
095
096}