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

org.keycloak.storage.user.UserLookupProvider Maven / Gradle / Ivy

There is a newer version: 25.0.5
Show newest version
/*
 * Copyright 2016 Red Hat, Inc. and/or its affiliates
 * and other contributors as indicated by the @author tags.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.keycloak.storage.user;

import org.keycloak.models.RealmModel;
import org.keycloak.models.UserModel;

/**
 * This is an optional capability interface that is intended to be implemented by any
 * {@link org.keycloak.storage.UserStorageProvider UserStorageProvider} that supports basic user querying. You must
 * implement this interface if you want to be able to log in to keycloak using users from your storage.
 * 

* Note that all methods in this interface should limit search only to data available within the storage that is * represented by this provider. They should not lookup other storage providers for additional information. * Optional capability interface implemented by UserStorageProviders. * * @author Bill Burke * @version $Revision: 1 $ */ public interface UserLookupProvider { /** * Returns a user with the given id belonging to the realm * * @param id id of the user * @param realm the realm model * @return found user model, or {@code null} if no such user exists */ default UserModel getUserById(RealmModel realm, String id) { return getUserById(id, realm); } /** * @deprecated Use {@link #getUserById(RealmModel, String) getUserById} instead. */ @Deprecated UserModel getUserById(String id, RealmModel realm); /** * Returns a user with the given username belonging to the realm * * @param username case insensitive username (case-sensitivity is controlled by storage) * @param realm the realm model * @return found user model, or {@code null} if no such user exists */ default UserModel getUserByUsername(RealmModel realm, String username) { return getUserByUsername(username, realm); } /** * @deprecated Use {@link #getUserByUsername(RealmModel, String) getUserByUsername} instead. */ @Deprecated UserModel getUserByUsername(String username, RealmModel realm); /** * Returns a user with the given email belonging to the realm * * @param email case insensitive email address (case-sensitivity is controlled by storage) * @param realm the realm model * @return found user model, or {@code null} if no such user exists * * @throws org.keycloak.models.ModelDuplicateException when there are more users with same email */ default UserModel getUserByEmail(RealmModel realm, String email) { return getUserByEmail(email, realm); } /** * @deprecated Use {@link #getUserByEmail(RealmModel, String) getUserByEmail} instead. */ @Deprecated UserModel getUserByEmail(String email, RealmModel realm); interface Streams extends UserLookupProvider { @Override UserModel getUserById(RealmModel realm, String id); @Override default UserModel getUserById(String id, RealmModel realm) { return getUserById(realm, id); } @Override UserModel getUserByUsername(RealmModel realm, String username); @Override default UserModel getUserByUsername(String username, RealmModel realm) { return getUserByUsername(realm, username); } @Override UserModel getUserByEmail(RealmModel realm, String email); @Override default UserModel getUserByEmail(String email, RealmModel realm) { return getUserByEmail(realm, email); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy