001/*
002 * (C) Copyright 2006-2007 Nuxeo SAS <http://nuxeo.com> and others
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Jean-Marc Orliaguet, Chalmers
011 *
012 * $Id$
013 */
014
015package org.nuxeo.theme.models;
016
017public class Feed extends AbstractModel {
018
019    private String title;
020
021    private String description;
022
023    private String url;
024
025    private String feedUrl;
026
027    public Feed() {
028    }
029
030    /*
031     * The title of the feed
032     */
033    public String getTitle() {
034        return title;
035    }
036
037    public void setTitle(String title) {
038        this.title = title;
039    }
040
041    /*
042     * The URL of the site, or of a section of the site
043     */
044    public String getUrl() {
045        return url;
046    }
047
048    public void setUrl(String url) {
049        this.url = url;
050    }
051
052    /*
053     * The description of the feed
054     */
055    public String getDescription() {
056        return description;
057    }
058
059    public void setDescription(String description) {
060        this.description = description;
061    }
062
063    /*
064     * The published URL of the feed
065     */
066    public String getFeedUrl() {
067        return feedUrl;
068    }
069
070    public void setFeedUrl(String feedUrl) {
071        this.feedUrl = feedUrl;
072    }
073
074}