All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pac4j.oauth.profile.google2.Google2Email Maven / Gradle / Ivy

There is a newer version: 6.1.0
Show newest version
package org.pac4j.oauth.profile.google2;

import com.fasterxml.jackson.annotation.JsonProperty;
import org.pac4j.oauth.profile.JsonObject;

/**
 * This class represents an email object for Google.
 *
 * @author Nate Williams
 * @since 1.6.1
 */
public final class Google2Email extends JsonObject {

    private static final long serialVersionUID = 3273984944635729083L;

    @JsonProperty("value")
    private String email;
    private String type;

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy