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 017import java.util.Date; 018 019public class FeedItem extends AbstractModel { 020 021 private String title; 022 023 private String description; 024 025 private Date date; 026 027 private String creator; 028 029 private String publisher; 030 031 private String rights; 032 033 private String imageUrl; 034 035 private String url; 036 037 private String uuid; 038 039 public FeedItem() { 040 } 041 042 public String getTitle() { 043 return title; 044 } 045 046 public void setTitle(String title) { 047 this.title = title; 048 } 049 050 public String getUrl() { 051 return url; 052 } 053 054 public void setUrl(String url) { 055 this.url = url; 056 } 057 058 public String getDescription() { 059 return description; 060 } 061 062 public void setDescription(String description) { 063 this.description = description; 064 } 065 066 public Date getDate() { 067 return date; 068 } 069 070 public void setDate(Date date) { 071 this.date = date; 072 } 073 074 public String getCreator() { 075 return creator; 076 } 077 078 public void setCreator(String creator) { 079 this.creator = creator; 080 } 081 082 public String getImageUrl() { 083 return imageUrl; 084 } 085 086 public void setImageUrl(String imageUrl) { 087 this.imageUrl = imageUrl; 088 } 089 090 public String getUuid() { 091 return uuid; 092 } 093 094 public void setUuid(String uuid) { 095 this.uuid = uuid; 096 } 097 098 public String getPublisher() { 099 return publisher; 100 } 101 102 public void setPublisher(String publisher) { 103 this.publisher = publisher; 104 } 105 106 public String getRights() { 107 return rights; 108 } 109 110 public void setRights(String rights) { 111 this.rights = rights; 112 } 113 114}