net.yadaframework.security.web.YadaSocialRegistrationData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yadawebsecurity Show documentation
Show all versions of yadawebsecurity Show documentation
Yada Framework authentication and authorization component
package net.yadaframework.security.web;
import java.util.Locale;
public class YadaSocialRegistrationData {
public String email;
public String name;
public String surname;
public String socialId;
public String accessToken;
public int socialType;
public String pictureUrl;
public Locale locale;
}