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

com.bazaarvoice.emodb.auth.identity.AuthIdentityReader Maven / Gradle / Ivy

There is a newer version: 6.5.190
Show newest version
package com.bazaarvoice.emodb.auth.identity;

/**
 * Minimal interface for read-only access to authentication identities.
 */
public interface AuthIdentityReader {

    /**
     * Gets an identity by authentication ID, such as its API key.  Returns the identity, or null if no such identity exists.
     */
    T getIdentityByAuthenticationId(String authenticationId);

    /**
     * Gets an entity by its ID, or null if no such identity exists.
     */
    T getIdentity(String id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy