]> source.dussan.org Git - archiva.git/blob
b2879b6dc0d229ca078ca6dc6838caf63589a5c6
[archiva.git] /
1 package org.apache.archiva.repository.content.base;
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.RepositoryContent;
23 import org.apache.archiva.repository.UnsupportedConversionException;
24 import org.apache.archiva.repository.content.Project;
25
26 import java.util.Map;
27
28 /**
29  * Immutable class, that represents a project.
30  */
31 public class ArchivaProject extends ArchivaContentItem implements Project
32 {
33     String namespace;
34     String id;
35     RepositoryContent repositoryContent;
36     Map<String, String> attributes;
37
38
39     @Override
40     public String getNamespace( )
41     {
42         return null;
43     }
44
45     @Override
46     public String getId( )
47     {
48         return null;
49     }
50
51     @Override
52     public RepositoryContent getRepository( )
53     {
54         return null;
55     }
56
57     @Override
58     public Map<String, String> getAttributes( )
59     {
60         return null;
61     }
62
63     @Override
64     public <T extends Project> T adapt( Class<T> clazz ) throws UnsupportedConversionException
65     {
66         if (clazz != ArchivaProject.class) {
67             throw new UnsupportedConversionException( "Cannot convert to class: " + clazz );
68         } else {
69             return (T) this;
70         }
71     }
72
73     @Override
74     public <T extends Project> boolean supports( Class<T> clazz )
75     {
76         return false;
77     }
78 }