]> source.dussan.org Git - archiva.git/blob
cb9f81cde70320981a34e9f41274189cdd613879
[archiva.git] /
1 package org.apache.maven.archiva.common.rss;
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 /**
23  * Holds the data for the SyndEntry in the RSS feed.
24  * 
25  * @author <a href="mailto:oching@apache.org">Maria Odea Ching</a>
26  * @version
27  */
28 public class RssFeedEntry
29 {
30     private String title;
31     
32     private String link;
33     
34     private String description;
35     
36     private String author;
37     
38     private String category;
39     
40     private String comments;
41     
42     private String enclosure;
43     
44     private String guid;
45     
46     private String source;
47
48     public String getTitle()
49     {
50         return title;
51     }
52
53     public void setTitle( String title )
54     {
55         this.title = title;
56     }
57
58     public String getLink()
59     {
60         return link;
61     }
62
63     public void setLink( String link )
64     {
65         this.link = link;
66     }
67
68     public String getDescription()
69     {
70         return description;
71     }
72
73     public void setDescription( String description )
74     {
75         this.description = description;
76     }
77
78     public String getAuthor()
79     {
80         return author;
81     }
82
83     public void setAuthor( String author )
84     {
85         this.author = author;
86     }
87
88     public String getCategory()
89     {
90         return category;
91     }
92
93     public void setCategory( String category )
94     {
95         this.category = category;
96     }
97
98     public String getComments()
99     {
100         return comments;
101     }
102
103     public void setComments( String comments )
104     {
105         this.comments = comments;
106     }
107
108     public String getEnclosure()
109     {
110         return enclosure;
111     }
112
113     public void setEnclosure( String enclosure )
114     {
115         this.enclosure = enclosure;
116     }
117
118     public String getGuid()
119     {
120         return guid;
121     }
122
123     public void setGuid( String guid )
124     {
125         this.guid = guid;
126     }
127
128     public String getSource()
129     {
130         return source;
131     }
132
133     public void setSource( String source )
134     {
135         this.source = source;
136     }
137 }