
org.pac4j.oauth.profile.foursquare.FoursquareUserFriends Maven / Gradle / Ivy
package org.pac4j.oauth.profile.foursquare;
import org.pac4j.oauth.profile.JsonObject;
import java.util.ArrayList;
import java.util.List;
/**
* This class represents a Foursquare user friend group container, with count and list of different groups.
*
* @author Alexey Ogarkov
* @since 1.5.0
*/
public class FoursquareUserFriends extends JsonObject {
private static final long serialVersionUID = -6264070010780654226L;
private int count;
private List groups = new ArrayList();
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public List getGroups() {
return groups;
}
public void setGroups(List groups) {
this.groups = groups;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy