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

org.pac4j.gae.credentials.GaeUserCredentials Maven / Gradle / Ivy

There is a newer version: 6.1.0
Show newest version
package org.pac4j.gae.credentials;

import com.google.appengine.api.users.User;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import org.pac4j.core.credentials.Credentials;

import java.io.Serial;

/**
 * Credential for Google App Engine.
 *
 * @author Patrice de Saint Steban
 * @since 1.6.0
 */
@Getter
@Setter
@ToString
@EqualsAndHashCode
public class GaeUserCredentials extends Credentials {

    @Serial
    private static final long serialVersionUID = -135519596194113906L;

    private User user;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy