001: /*
002: * Copyright (c) JForum Team
003: * All rights reserved.
004: *
005: * Redistribution and use in source and binary forms,
006: * with or without modification, are permitted provided
007: * that the following conditions are met:
008: *
009: * 1) Redistributions of source code must retain the above
010: * copyright notice, this list of conditions and the
011: * following disclaimer.
012: * 2) Redistributions in binary form must reproduce the
013: * above copyright notice, this list of conditions and
014: * the following disclaimer in the documentation and/or
015: * other materials provided with the distribution.
016: * 3) Neither the name of "Rafael Steil" nor
017: * the names of its contributors may be used to endorse
018: * or promote products derived from this software without
019: * specific prior written permission.
020: *
021: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
022: * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
023: * EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
024: * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
025: * MERCHANTABILITY AND FITNESS FOR A PARTICULAR
026: * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
027: * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
028: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
029: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES
030: * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
031: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
032: * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
033: * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
034: * IN CONTRACT, STRICT LIABILITY, OR TORT
035: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
036: * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
037: * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
038: *
039: * Created on 20/10/2004 22:58:48
040: * The JForum Project
041: * http://www.jforum.net
042: */
043: package net.jforum.util.rss;
044:
045: import java.util.ArrayList;
046: import java.util.List;
047:
048: /**
049: * Represents a single RSS piece of content.
050: *
051: * @author Rafael Steil
052: * @version $Id: RSSItem.java,v 1.9 2006/08/23 02:13:38 rafaelsteil Exp $
053: */
054: public class RSSItem {
055: private String author;
056: private String link;
057: private String title;
058: private String description;
059: private String contentType;
060: private String publishDate;
061: private List categories;
062:
063: public RSSItem() {
064: this .categories = new ArrayList();
065: }
066:
067: /**
068: * Gets the item's author
069: * @return
070: */
071: public String getAuthor() {
072: return this .author;
073: }
074:
075: /**
076: * Sets the item's author
077: * @param author
078: */
079: public void setAuthor(String author) {
080: this .author = author;
081: }
082:
083: /**
084: * Gets the document's description content-type
085: * @return The content-type, generally represented by
086: * <code>text/html</code> or <code>text/plain</code>
087: */
088: public String getContentType() {
089: return this .contentType;
090: }
091:
092: /**
093: * Sets the document's description content-type
094: * @param contentType <code>text/html</code> or <code>text/plain</code>
095: */
096: public void setContentType(String contentType) {
097: this .contentType = contentType;
098: }
099:
100: /**
101: * Gets the document's description
102: * @return
103: */
104: public String getDescription() {
105: return this .description;
106: }
107:
108: /**
109: * Sets the document description
110: * @param description
111: */
112: public void setDescription(String description) {
113: this .description = description;
114: }
115:
116: /**
117: * Getst the document's link
118: * @return
119: */
120: public String getLink() {
121: return this .link;
122: }
123:
124: /**
125: * Sets the document's link
126: * @param link
127: */
128: public void setLink(String link) {
129: this .link = link;
130: }
131:
132: /**
133: * Gets the document's title
134: * @return
135: */
136: public String getTitle() {
137: return this .title;
138: }
139:
140: /**
141: * Sets the document's the title
142: * @param title
143: */
144: public void setTitle(String title) {
145: this .title = title;
146: }
147:
148: /**
149: * Sets the content publication date and time
150: * @param date
151: */
152: public void setPublishDate(String date) {
153: this .publishDate = date;
154: }
155:
156: /**
157: * Gets the document publication date
158: * @return
159: */
160: public String getPublishDate() {
161: return this .publishDate;
162: }
163:
164: /**
165: * Associated a new category to this item.
166: * It is possible to assiciate multiple categories to
167: * each item
168: * @param category The category name
169: */
170: public void addCategory(String category) {
171: this .categories.add(category);
172: }
173:
174: /**
175: * Gets the categories for this item
176: * @return
177: */
178: public List getCategories() {
179: return this.categories;
180: }
181: }
|