@Path(value="/mergeRepositoriesService/") public interface MergeRepositoriesService
| Modifier and Type | Method and Description | 
|---|---|
| List<Artifact> | getMergeConflictedArtifacts(String sourceRepositoryId,
                           String targetRepositoryId)permissions are checked in impl | 
| void | mergeRepositories(String sourceRepositoryId,
                 String targetRepositoryId,
                 boolean skipConflicts)permissions are checked in impl | 
@Path(value="mergeConflictedArtifacts/{sourceRepositoryId}/{targetRepositoryId}")
 @GET
 @Produces(value={"application/json","application/xml"})
List<Artifact> getMergeConflictedArtifacts(@PathParam(value="sourceRepositoryId")
                                                                                                                                                                                            String sourceRepositoryId,
                                                                                                                                                                                            @PathParam(value="targetRepositoryId")
                                                                                                                                                                                            String targetRepositoryId)
                                                                                                                                                                                     throws ArchivaRestServiceException
ArchivaRestServiceException@Path(value="mergeRepositories/{sourceRepositoryId}/{targetRepositoryId}/{skipConflicts}")
 @GET
void mergeRepositories(@PathParam(value="sourceRepositoryId")
                                                                                                                        String sourceRepositoryId,
                                                                                                                        @PathParam(value="targetRepositoryId")
                                                                                                                        String targetRepositoryId,
                                                                                                                        @PathParam(value="skipConflicts")
                                                                                                                        boolean skipConflicts)
                                                                                                                 throws ArchivaRestServiceException
ArchivaRestServiceExceptionCopyright © 2006–2019 The Apache Software Foundation. All rights reserved.