]> source.dussan.org Git - archiva.git/blob
9973c45c4efaeb382eeeca105a360667f27a0e7a
[archiva.git] /
1 package org.apache.archiva.metadata.model;
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 java.util.ArrayList;
23 import java.util.Collection;
24 import java.util.HashMap;
25 import java.util.List;
26 import java.util.Map;
27
28 public class ProjectVersionMetadata
29 {
30     private String id;
31
32     private String url;
33
34     private String name;
35
36     private String description;
37
38     private Organization organization;
39
40     private IssueManagement issueManagement;
41
42     private Scm scm;
43
44     private CiManagement ciManagement;
45
46     private List<License> licenses = new ArrayList<License>();
47
48     private Map<String, MetadataFacet> facets = new HashMap<String, MetadataFacet>();
49
50     private List<MailingList> mailingLists = new ArrayList<MailingList>();
51
52     private List<Dependency> dependencies = new ArrayList<Dependency>();
53
54     private boolean incomplete;
55
56     public String getId()
57     {
58         return id;
59     }
60
61     public String getVersion()
62     {
63         return id;
64     }
65
66     public void setId( String id )
67     {
68         this.id = id;
69     }
70
71     public void setUrl( String url )
72     {
73         this.url = url;
74     }
75
76     public void setName( String name )
77     {
78         this.name = name;
79     }
80
81     public void setDescription( String description )
82     {
83         this.description = description;
84     }
85
86     public String getDescription()
87     {
88         return description;
89     }
90
91     public String getUrl()
92     {
93         return url;
94     }
95
96     public String getName()
97     {
98         return name;
99     }
100
101     public Organization getOrganization()
102     {
103         return organization;
104     }
105
106     public void setOrganization( Organization organization )
107     {
108         this.organization = organization;
109     }
110
111     public IssueManagement getIssueManagement()
112     {
113         return issueManagement;
114     }
115
116     public void setIssueManagement( IssueManagement issueManagement )
117     {
118         this.issueManagement = issueManagement;
119     }
120
121     public Scm getScm()
122     {
123         return scm;
124     }
125
126     public void setScm( Scm scm )
127     {
128         this.scm = scm;
129     }
130
131     public CiManagement getCiManagement()
132     {
133         return ciManagement;
134     }
135
136     public void setCiManagement( CiManagement ciManagement )
137     {
138         this.ciManagement = ciManagement;
139     }
140
141     public List<License> getLicenses()
142     {
143         return licenses;
144     }
145
146     public void setLicenses( List<License> licenses )
147     {
148         this.licenses = licenses;
149     }
150
151     public void addLicense( License license )
152     {
153         this.licenses.add( license );
154     }
155
156     public void addFacet( MetadataFacet metadataFacet )
157     {
158         this.facets.put( metadataFacet.getFacetId(), metadataFacet );
159     }
160
161     public MetadataFacet getFacet( String facetId )
162     {
163         return this.facets.get( facetId );
164     }
165
166     public Map<String, MetadataFacet> getFacets()
167     {
168         return facets;
169     }
170
171     public Collection<MetadataFacet> getFacetList()
172     {
173         return this.facets.values();
174     }
175
176     public Collection<String> getFacetIds()
177     {
178         return this.facets.keySet();
179     }
180
181     public void setMailingLists( List<MailingList> mailingLists )
182     {
183         this.mailingLists = mailingLists;
184     }
185
186     public List<MailingList> getMailingLists()
187     {
188         return mailingLists;
189     }
190
191     public void addMailingList( MailingList mailingList )
192     {
193         this.mailingLists.add( mailingList );
194     }
195
196     public void setDependencies( List<Dependency> dependencies )
197     {
198         this.dependencies = dependencies;
199     }
200
201     public List<Dependency> getDependencies()
202     {
203         return dependencies;
204     }
205
206     public void addDependency( Dependency dependency )
207     {
208         this.dependencies.add( dependency );
209     }
210
211     public boolean isIncomplete()
212     {
213         return incomplete;
214     }
215
216     public void setIncomplete( boolean incomplete )
217     {
218         this.incomplete = incomplete;
219     }
220 }