mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
initial pubsubhubbub support (#44)
This commit is contained in:
@@ -16,6 +16,16 @@ public class FetchedFeed {
|
||||
private long fetchDuration;
|
||||
private Date publishedDate;
|
||||
|
||||
/**
|
||||
* pubsubhubbub hub url
|
||||
*/
|
||||
private String hub;
|
||||
|
||||
/**
|
||||
* pubsubhubbub topic
|
||||
*/
|
||||
private String topic;
|
||||
|
||||
public Feed getFeed() {
|
||||
return feed;
|
||||
}
|
||||
@@ -56,4 +66,20 @@ public class FetchedFeed {
|
||||
this.publishedDate = publishedDate;
|
||||
}
|
||||
|
||||
public String getHub() {
|
||||
return hub;
|
||||
}
|
||||
|
||||
public void setHub(String hub) {
|
||||
this.hub = hub;
|
||||
}
|
||||
|
||||
public String getTopic() {
|
||||
return topic;
|
||||
}
|
||||
|
||||
public void setTopic(String topic) {
|
||||
this.topic = topic;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user