]> source.dussan.org Git - archiva.git/blob
7002d7ebeb622febdb2bd67f0e72eec4c5d45329
[archiva.git] /
1 package org.apache.archiva.repository;
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.model.ArtifactReference;
23 import org.apache.archiva.model.RepositoryURL;
24 import org.apache.archiva.repository.layout.LayoutException;
25
26 /**
27  * RemoteRepositoryContent interface for interacting with a remote repository in an abstract way, 
28  * without the need for processing based on URLs, or working with the database. 
29  *
30  *
31  */
32 public interface RemoteRepositoryContent extends RepositoryContent
33 {
34     /**
35      * <p>
36      * Convenience method to get the repository id.
37      * </p>
38      * 
39      * <p>
40      * Equivalent to calling <code>.getRepository().getId()</code>
41      * </p>
42      * 
43      * @return the repository id.
44      */
45     String getId();
46
47     /**
48      * Get the repository configuration associated with this
49      * repository content.
50      * 
51      * @return the repository that is associated with this repository content.
52      */
53     RemoteRepository getRepository();
54
55     /**
56      * <p>
57      * Convenience method to get the repository url.
58      * </p>
59      * 
60      * <p>
61      * Equivalent to calling <code>new RepositoryURL( this.getRepository().getUrl() )</code>
62      * </p>
63      * 
64      * @return the repository url.
65      */
66     RepositoryURL getURL();
67
68     /**
69      * Set the repository configuration to associate with this
70      * repository content.
71      * 
72      * @param repo the repository to associate with this repository content.
73      */
74     void setRepository( RemoteRepository repo );
75
76     /**
77      * Given an ArtifactReference, return the url to the artifact.
78      *
79      * @param reference the artifact reference to use.
80      * @return the relative path to the artifact.
81      */
82     RepositoryURL toURL( ArtifactReference reference );
83 }