display favicon

This commit is contained in:
Athou
2013-04-03 15:53:57 +02:00
parent 8b9c1786b3
commit 81cbb541b8
11 changed files with 162 additions and 29 deletions

View File

@@ -24,6 +24,9 @@ public class Feed extends AbstractModel {
@Transient
private String title;
@Column(length = 2048)
private String link;
@Temporal(TemporalType.TIMESTAMP)
private Date lastUpdated;
@@ -92,4 +95,12 @@ public class Feed extends AbstractModel {
this.title = title;
}
public String getLink() {
return link;
}
public void setLink(String link) {
this.link = link;
}
}