Advertisement
Antoxa421

Class RSSObject

Feb 24th, 2020
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. public class RSSObject
  2. {
  3. public String status;
  4. public Feed feed;
  5. public List<Item> item;
  6.  
  7. public RSSObject(String status, Feed feed, List<Item> item) {
  8. this.status = status;
  9. this.feed = feed;
  10. this.item = item;
  11. }
  12.  
  13. public String getStatus() {
  14. return status;
  15. }
  16.  
  17. public void setStatus(String status) {
  18. this.status = status;
  19. }
  20.  
  21. public Feed getFeed() {
  22. return feed;
  23. }
  24.  
  25. public void setFeed(Feed feed) {
  26. this.feed = feed;
  27. }
  28.  
  29. public List<Item> getItem() {
  30. return item;
  31. }
  32.  
  33. public void setItem(List<Item> item) {
  34. this.item = item;
  35. }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement