]> source.dussan.org Git - archiva.git/blob
06214e8b4971991bf429ba729dcb5be18a1ea7e3
[archiva.git] /
1 package org.apache.maven.repository.converter;
2
3 /*
4  * Copyright 2005-2006 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import org.apache.maven.artifact.Artifact;
20 import org.apache.maven.artifact.repository.ArtifactRepository;
21 import org.apache.maven.repository.reporting.ArtifactReporter;
22
23 import java.util.List;
24
25 /**
26  * Copy a set of artifacts from one repository to the other, converting if necessary.
27  *
28  * @author <a href="mailto:brett@apache.org">Brett Porter</a>
29  */
30 public interface RepositoryConverter
31 {
32     String ROLE = RepositoryConverter.class.getName();
33
34     /**
35      * Convert a single artifact, writing it into the target repository.
36      *
37      * @param artifact         the artifact to convert
38      * @param targetRepository the target repository
39      * @param reporter         reporter to track the results of the conversion
40      */
41     void convert( Artifact artifact, ArtifactRepository targetRepository, ArtifactReporter reporter )
42         throws RepositoryConversionException;
43
44     /**
45      * Convert a set of artifacts, writing them into the target repository.
46      *
47      * @param artifacts        the set of artifacts to convert
48      * @param targetRepository the target repository
49      * @param reporter         reporter to track the results of the conversions
50      */
51     void convert( List artifacts, ArtifactRepository targetRepository, ArtifactReporter reporter )
52         throws RepositoryConversionException;
53 }