1 package org.apache.maven.archiva.common.rss;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
23 * Holds the data for the SyndEntry in the RSS feed.
25 * @author <a href="mailto:oching@apache.org">Maria Odea Ching</a>
28 public class RssFeedEntry
34 private String description;
36 private String author;
38 private String category;
40 private String comments;
42 private String enclosure;
46 private String source;
48 public String getTitle()
53 public void setTitle( String title )
58 public String getLink()
63 public void setLink( String link )
68 public String getDescription()
73 public void setDescription( String description )
75 this.description = description;
78 public String getAuthor()
83 public void setAuthor( String author )
88 public String getCategory()
93 public void setCategory( String category )
95 this.category = category;
98 public String getComments()
103 public void setComments( String comments )
105 this.comments = comments;
108 public String getEnclosure()
113 public void setEnclosure( String enclosure )
115 this.enclosure = enclosure;
118 public String getGuid()
123 public void setGuid( String guid )
128 public String getSource()
133 public void setSource( String source )
135 this.source = source;