
org.pac4j.oauth.profile.yahoo.YahooInterest Maven / Gradle / Ivy
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