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

org.pac4j.oauth.profile.facebook.FacebookEducation Maven / Gradle / Ivy

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

import org.pac4j.oauth.profile.JsonObject;

import java.util.List;

/**
 * This class represents an education object for Facebook.
 * 
 * @author Jerome Leleu
 * @since 1.0.0
 */
public final class FacebookEducation extends JsonObject {
    
    private static final long serialVersionUID = 3587603107957633824L;
    
    private FacebookObject school;
    
    private FacebookObject degree;
    
    private FacebookObject year;
    
    private List concentration;
    
    private String type;
    
    public FacebookObject getSchool() {
        return school;
    }

    public void setSchool(FacebookObject school) {
        this.school = school;
    }

    public FacebookObject getDegree() {
        return degree;
    }

    public void setDegree(FacebookObject degree) {
        this.degree = degree;
    }

    public FacebookObject getYear() {
        return year;
    }

    public void setYear(FacebookObject year) {
        this.year = year;
    }

    public List getConcentration() {
        return concentration;
    }

    public void setConcentration(List concentration) {
        this.concentration = concentration;
    }

    public String getType() {
        return type;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy