]> source.dussan.org Git - archiva.git/blob
cf68c9509486a5a2e90fac8ce0bf364720e4e444
[archiva.git] /
1 package org.apache.maven.archiva.proxy;
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.maven.archiva.model.ArtifactReference;
23 import org.apache.maven.archiva.model.ProjectReference;
24 import org.apache.maven.archiva.model.VersionedReference;
25 import org.apache.maven.archiva.policies.ProxyDownloadException;
26 import org.apache.maven.archiva.repository.ManagedRepositoryContent;
27
28 import java.io.File;
29 import java.util.List;
30
31 /**
32  * Handler for potential repository proxy connectors.
33  *
34  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
35  * @version $Id$
36  */
37 public interface RepositoryProxyConnectors
38 {
39     /**
40      * Performs the artifact fetch operation against the target repositories
41      * of the provided source repository.
42      * 
43      * If the artifact is found, it is downloaded and placed into the source repository
44      * filesystem.
45      * 
46      * @param repository the source repository to use. (must be a managed repository)
47      * @param artifact the artifact to fetch.
48      * @return the file that was obtained, or null if no content was obtained
49      * @throws ProxyDownloadException if there was a problem fetching the content from the target repositories.
50      */
51     public File fetchFromProxies( ManagedRepositoryContent repository, ArtifactReference artifact )
52         throws ProxyDownloadException;
53
54     /**
55      * Performs the metadata fetch operation against the target repositories
56      * of the provided source repository.
57      * 
58      * If the metadata is found, it is downloaded and placed into the source repository
59      * filesystem.
60      * 
61      * @param repository the source repository to use. (must be a managed repository)
62      * @param metadata the metadata to fetch.
63      * @return the file that was obtained, or null if no content was obtained
64      */
65     public File fetchFromProxies( ManagedRepositoryContent repository, VersionedReference metadata );
66
67     /**
68      * Performs the metadata fetch operation against the target repositories
69      * of the provided source repository.
70      * 
71      * If the metadata is found, it is downloaded and placed into the source repository
72      * filesystem.
73      * 
74      * @param repository the source repository to use. (must be a managed repository)
75      * @param metadata the metadata to fetch.
76      * @return the file that was obtained, or null if no content was obtained
77      */
78     public File fetchFromProxies( ManagedRepositoryContent repository, ProjectReference metadata );
79
80     /**
81      * Performs the fetch operation against the target repositories
82      * of the provided source repository.
83      * 
84      * @param repository the source repository to use. (must be a managed repository)
85      * @param path the path of the resource to fetch
86      * @return the file that was obtained, or null if no content was obtained
87      */
88     public File fetchFromProxies( ManagedRepositoryContent managedRepository, String path );
89
90     /**
91      * Get the List of {@link ProxyConnector} objects of the source repository.
92      * 
93      * @param repository the source repository to look for.
94      * @return the List of {@link ProxyConnector} objects.
95      */
96     public List<ProxyConnector> getProxyConnectors( ManagedRepositoryContent repository );
97
98     /**
99      * Tests to see if the provided repository is a source repository for
100      * any {@link ProxyConnector} objects.
101      * 
102      * @param repository the source repository to look for.
103      * @return true if there are proxy connectors that use the provided 
104      *   repository as a source repository.
105      */
106     public boolean hasProxies( ManagedRepositoryContent repository );
107 }