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 java.io.Serial;
import java.io.Serializable;
import java.util.List;

/**
 * This class represents an education object for Facebook.
 *
 * @author Jerome Leleu
 * @since 1.0.0
 */
public final class FacebookEducation implements Serializable {

    @Serial
    private static final long serialVersionUID = 3587603107957633824L;

    private FacebookObject school;

    private FacebookObject degree;

    private FacebookObject year;

    private List concentration;

    private String type;

    /**
     * 

Getter for the field school.

* * @return a {@link FacebookObject} object */ public FacebookObject getSchool() { return school; } /** *

Setter for the field school.

* * @param school a {@link FacebookObject} object */ public void setSchool(FacebookObject school) { this.school = school; } /** *

Getter for the field degree.

* * @return a {@link FacebookObject} object */ public FacebookObject getDegree() { return degree; } /** *

Setter for the field degree.

* * @param degree a {@link FacebookObject} object */ public void setDegree(FacebookObject degree) { this.degree = degree; } /** *

Getter for the field year.

* * @return a {@link FacebookObject} object */ public FacebookObject getYear() { return year; } /** *

Setter for the field year.

* * @param year a {@link FacebookObject} object */ public void setYear(FacebookObject year) { this.year = year; } /** *

Getter for the field concentration.

* * @return a {@link List} object */ public List getConcentration() { return concentration; } /** *

Setter for the field concentration.

* * @param concentration a {@link List} object */ public void setConcentration(List concentration) { this.concentration = concentration; } /** *

Getter for the field type.

* * @return a {@link String} object */ public String getType() { return type; } /** *

Setter for the field type.

* * @param type a {@link String} object */ public void setType(String type) { this.type = type; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy