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

org.pac4j.oauth.profile.yahoo.YahooInterest Maven / Gradle / Ivy

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

import java.util.List;

import org.pac4j.oauth.profile.JsonObject;

/**
 * This class represents a Yahoo interest.
 * 
 * @author Jerome Leleu
 * @since 1.1.0
 */
public final class YahooInterest extends JsonObject {
    
    private static final long serialVersionUID = 3613314161531695788L;
    
    private List declaredInterests;
    
    private String interestCategory;

    public List getDeclaredInterests() {
        return declaredInterests;
    }

    public void setDeclaredInterests(List declaredInterests) {
        this.declaredInterests = declaredInterests;
    }

    public String getInterestCategory() {
        return interestCategory;
    }

    public void setInterestCategory(String interestCategory) {
        this.interestCategory = interestCategory;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy