
org.pac4j.oauth.profile.foursquare.FoursquareUserContact Maven / Gradle / Ivy
package org.pac4j.oauth.profile.foursquare;
import org.pac4j.oauth.profile.JsonObject;
/**
* This class is the user profile for Foursquare with appropriate getters.
* It is returned by the {@link org.pac4j.oauth.client.FoursquareClient}.
*
* @author Alexey Ogarkov
* @since 1.5.0
*/
public class FoursquareUserContact extends JsonObject {
private static final long serialVersionUID = -4866834192367416908L;
private String email;
private String twitter;
private String facebook;
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getTwitter() {
return twitter;
}
public void setTwitter(String twitter) {
this.twitter = twitter;
}
public String getFacebook() {
return facebook;
}
public void setFacebook(String facebook) {
this.facebook = facebook;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy