
com.googlecode.googleplus.model.BaseFeed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-plus-java-api Show documentation
Show all versions of google-plus-java-api Show documentation
A Java client for the Google+ API
The newest version!
package com.googlecode.googleplus.model;
import java.util.Collections;
import java.util.Date;
import java.util.List;
public abstract class BaseFeed {
private String nextPageToken;
private String kind;
private String etag;
private String title;
private Date updated;
private String nextLink;
private String id;
private String selfLink;
private List items = Collections.emptyList();
public String getNextPageToken() {
return nextPageToken;
}
public void setNextPageToken(String nextPageToken) {
this.nextPageToken = nextPageToken;
}
public String getKind() {
return kind;
}
public void setKind(String kind) {
this.kind = kind;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Date getUpdated() {
return updated;
}
public void setUpdated(Date updated) {
this.updated = updated;
}
public String getNextLink() {
return nextLink;
}
public void setNextLink(String nextLink) {
this.nextLink = nextLink;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getSelfLink() {
return selfLink;
}
public void setSelfLink(String selfLink) {
this.selfLink = selfLink;
}
public List getItems() {
return items;
}
public void setItems(List items) {
this.items = items;
}
public String getEtag() {
return etag;
}
public void setEtag(String etag) {
this.etag = etag;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy