2013-03-24 13:11:05 +01:00
|
|
|
package com.commafeed.frontend.model;
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
2013-03-25 12:24:00 +01:00
|
|
|
@SuppressWarnings("serial")
|
2013-03-24 13:11:05 +01:00
|
|
|
public class SubscriptionRequest implements Serializable {
|
|
|
|
|
|
|
|
|
|
private String url;
|
|
|
|
|
private String title;
|
|
|
|
|
private String categoryId;
|
|
|
|
|
|
|
|
|
|
public String getUrl() {
|
|
|
|
|
return url;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setUrl(String url) {
|
|
|
|
|
this.url = url;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getTitle() {
|
|
|
|
|
return title;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTitle(String title) {
|
|
|
|
|
this.title = title;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCategoryId() {
|
|
|
|
|
return categoryId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCategoryId(String categoryId) {
|
|
|
|
|
this.categoryId = categoryId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|