]> source.dussan.org Git - archiva.git/blob
8efdd84618143cd6cb7db433682e40c1b21518d7
[archiva.git] /
1 package org.apache.archiva.repository.content;
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.repository.ManagedRepositoryContent;
23 import org.apache.archiva.repository.UnsupportedConversionException;
24 import org.apache.archiva.repository.storage.StorageAsset;
25
26 import java.util.Map;
27
28 public interface ContentItem
29 {
30     /**
31      * Returns the repository type specific implementation
32      *
33      * @param clazz the specific implementation class
34      * @param <T>   the class or interface
35      * @return the specific project implementation
36      */
37     <T extends Project> T adapt( Class<T> clazz ) throws UnsupportedConversionException;
38
39     /**
40      * Returns <code>true</code>, if this project supports the given adaptor class.
41      *
42      * @param clazz the class to convert this project to
43      * @param <T>   the type
44      * @return <code>true/code>, if the implementation is supported, otherwise false
45      */
46     <T extends Project> boolean supports( Class<T> clazz );
47
48     /**
49      * Additional attributes
50      *
51      * @return the additional attributes
52      */
53     Map<String, String> getAttributes( );
54
55     /**
56      * Returns the attribute value for the given key.
57      *
58      * @param key the attribute key
59      * @return the value, if the key exists, otherwise <code>null</code>
60      */
61     String getAttribute( String key );
62
63     /**
64      * Returns the storage representation of the artifact. The asset must not exist.
65      *
66      * @return the asset this artifact corresponds to.
67      */
68     StorageAsset getAsset( );
69
70
71     /**
72      * The repository this project is part of.
73      *
74      * @return the repository content
75      */
76     ManagedRepositoryContent getRepository( );
77
78     /**
79      * Returns <code>true</code>, if the item exists, otherwise <code>false</code>
80      * @return <code>true</code>, if the item exists, otherwise <code>false</code>
81      */
82     boolean exists();
83
84 }