001/*
002 * (C) Copyright 2006-2007 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     Jean-Marc Orliaguet, Chalmers
018 *
019 * $Id$
020 */
021
022package org.nuxeo.theme.models;
023
024import java.util.Date;
025
026public class FeedItem extends AbstractModel {
027
028    private String title;
029
030    private String description;
031
032    private Date date;
033
034    private String creator;
035
036    private String publisher;
037
038    private String rights;
039
040    private String imageUrl;
041
042    private String url;
043
044    private String uuid;
045
046    public FeedItem() {
047    }
048
049    public String getTitle() {
050        return title;
051    }
052
053    public void setTitle(String title) {
054        this.title = title;
055    }
056
057    public String getUrl() {
058        return url;
059    }
060
061    public void setUrl(String url) {
062        this.url = url;
063    }
064
065    public String getDescription() {
066        return description;
067    }
068
069    public void setDescription(String description) {
070        this.description = description;
071    }
072
073    public Date getDate() {
074        return date;
075    }
076
077    public void setDate(Date date) {
078        this.date = date;
079    }
080
081    public String getCreator() {
082        return creator;
083    }
084
085    public void setCreator(String creator) {
086        this.creator = creator;
087    }
088
089    public String getImageUrl() {
090        return imageUrl;
091    }
092
093    public void setImageUrl(String imageUrl) {
094        this.imageUrl = imageUrl;
095    }
096
097    public String getUuid() {
098        return uuid;
099    }
100
101    public void setUuid(String uuid) {
102        this.uuid = uuid;
103    }
104
105    public String getPublisher() {
106        return publisher;
107    }
108
109    public void setPublisher(String publisher) {
110        this.publisher = publisher;
111    }
112
113    public String getRights() {
114        return rights;
115    }
116
117    public void setRights(String rights) {
118        this.rights = rights;
119    }
120
121}