blob: 98302bfc60e676f5e58225fa4e32d12d9fe81213 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.syncope.core.persistence.api.dao;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import org.apache.commons.lang3.tuple.Pair;
import org.apache.syncope.core.persistence.api.entity.Privilege;
import org.apache.syncope.core.persistence.api.entity.Role;
import org.apache.syncope.core.persistence.api.entity.group.Group;
import org.apache.syncope.core.persistence.api.entity.resource.ExternalResource;
import org.apache.syncope.core.persistence.api.entity.user.LinkedAccount;
import org.apache.syncope.core.persistence.api.entity.user.SecurityQuestion;
import org.apache.syncope.core.persistence.api.entity.user.UMembership;
import org.apache.syncope.core.persistence.api.entity.user.User;
public interface UserDAO extends AnyDAO<User> {
/**
* Checks if the calling user is authorized to access the User matching the provided key, under the given
* realm.
*
* @param authRealms realms for which the calling user owns entitlement(s) to check
* @param key User key
* @param realm User's realm full path
* @param groups group the User is member of
*/
void securityChecks(Set<String> authRealms, String key, String realm, Collection<String> groups);
Optional<String> findUsername(String key);
Map<String, Integer> countByRealm();
Map<String, Integer> countByStatus();
User findByUsername(String username);
User findByToken(String token);
List<User> findBySecurityQuestion(SecurityQuestion securityQuestion);
UMembership findMembership(String key);
List<Role> findDynRoles(String key);
Collection<Role> findAllRoles(User user);
List<Group> findDynGroups(String key);
Collection<Group> findAllGroups(User user);
Collection<String> findAllGroupKeys(User user);
Collection<String> findAllGroupNames(User user);
Collection<ExternalResource> findAllResources(User user);
boolean linkedAccountExists(String userKey, String connObjectKeyValue);
Optional<? extends LinkedAccount> findLinkedAccount(ExternalResource resource, String connObjectKeyValue);
List<LinkedAccount> findLinkedAccounts(String userKey);
List<LinkedAccount> findLinkedAccountsByResource(ExternalResource resource);
List<LinkedAccount> findLinkedAccountsByPrivilege(Privilege privilege);
Pair<Boolean, Boolean> enforcePolicies(User user);
Pair<Set<String>, Set<String>> saveAndGetDynGroupMembs(User user);
}