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

org.pac4j.oauth.profile.linkedin2.LinkedIn2Date Maven / Gradle / Ivy

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

import java.io.Serializable;

/**
 * This class represents a LinkedIn date.
 * 
 * @author Jerome Leleu
 * @since 1.4.1
 */
public class LinkedIn2Date implements Serializable {
    
    private static final long serialVersionUID = 7741232980013691057L;
    
    private Integer year;
    
    private Integer month;

    public Integer getYear() {
        return year;
    }

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

    public Integer getMonth() {
        return month;
    }

    public void setMonth(Integer month) {
        this.month = month;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy