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

org.pac4j.oauth.profile.facebook.FacebookApplication 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;

/**
 * This class represents a Facebook application.
 *
 * @author Jerome Leleu
 * @since 1.2.0
 */
public final class FacebookApplication implements Serializable {

    @Serial
    private static final long serialVersionUID = 8888597071833762957L;

    private String namespace;

    /**
     * 

Getter for the field namespace.

* * @return a {@link String} object */ public String getNamespace() { return namespace; } /** *

Setter for the field namespace.

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy