
org.pac4j.oauth.profile.facebook.FacebookGroup Maven / Gradle / Ivy
package org.pac4j.oauth.profile.facebook;
import java.io.Serial;
import java.io.Serializable;
/**
* This class represents a Facebook group.
*
* @author Jerome Leleu
* @since 1.2.0
*/
public final class FacebookGroup implements Serializable {
@Serial
private static final long serialVersionUID = -846266834053161809L;
private String id;
private String name;
private String privacy;
/**
* Getter for the field id
.
*
* @return a {@link String} object
*/
public String getId() {
return id;
}
/**
* Setter for the field id
.
*
* @param id a {@link String} object
*/
public void setId(String id) {
this.id = id;
}
/**
* Getter for the field name
.
*
* @return a {@link String} object
*/
public String getName() {
return name;
}
/**
* Setter for the field name
.
*
* @param name a {@link String} object
*/
public void setName(String name) {
this.name = name;
}
/**
* Getter for the field privacy
.
*
* @return a {@link String} object
*/
public String getPrivacy() {
return privacy;
}
/**
* Setter for the field privacy
.
*
* @param privacy a {@link String} object
*/
public void setPrivacy(String privacy) {
this.privacy = privacy;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy