spring security LookupStrategy 源码

  • 2022-08-13
  • 浏览 (311)

spring security LookupStrategy 代码

文件路径:/acl/src/main/java/org/springframework/security/acls/jdbc/LookupStrategy.java

/*
 * Copyright 2004, 2005, 2006 Acegi Technology Pty Limited
 *
 * 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
 *
 *      https://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.springframework.security.acls.jdbc;

import java.util.List;
import java.util.Map;

import org.springframework.security.acls.model.Acl;
import org.springframework.security.acls.model.NotFoundException;
import org.springframework.security.acls.model.ObjectIdentity;
import org.springframework.security.acls.model.Sid;

/**
 * Performs lookups for {@link org.springframework.security.acls.model.AclService}.
 *
 * @author Ben Alex
 */
public interface LookupStrategy {

	/**
	 * Perform database-specific optimized lookup.
	 * @param objects the identities to lookup (required)
	 * @param sids the SIDs for which identities are required (may be <tt>null</tt> -
	 * implementations may elect not to provide SID optimisations)
	 * @return a <tt>Map</tt> where keys represent the {@link ObjectIdentity} of the
	 * located {@link Acl} and values are the located {@link Acl} (never <tt>null</tt>
	 * although some entries may be missing; this method should not throw
	 * {@link NotFoundException}, as a chain of {@link LookupStrategy}s may be used to
	 * automatically create entries if required)
	 */
	Map<ObjectIdentity, Acl> readAclsById(List<ObjectIdentity> objects, List<Sid> sids);

}

相关信息

spring security 源码目录

相关文章

spring security AclClassIdUtils 源码

spring security BasicLookupStrategy 源码

spring security JdbcAclService 源码

spring security JdbcMutableAclService 源码

spring security package-info 源码

0  赞