📄 usercache.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 * * 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.acegisecurity.providers.dao;import org.acegisecurity.userdetails.User;import org.acegisecurity.userdetails.UserDetails;/** * Provides a cache of {@link User} objects. * * <P> * Implementations should provide appropriate methods to set their cache * parameters (eg time-to-live) and/or force removal of entities before their * normal expiration. These are not part of the <code>UserCache</code> * interface contract because they vary depending on the type of caching * system used (eg in-memory vs disk vs cluster vs hybrid). * </p> * * @author Ben Alex * @version $Id: UserCache.java 1784 2007-02-24 21:00:24Z luke_t $ */public interface UserCache { //~ Methods ======================================================================================================== /** * Obtains a {@link UserDetails} from the cache. * * @param username the {@link User#getUsername()} used to place the user in the cache * * @return the populated <code>UserDetails</code> or <code>null</code> if the user could not be found or if the * cache entry has expired */ UserDetails getUserFromCache(String username); /** * Places a {@link UserDetails} in the cache. The <code>username</code> is the key used to subsequently * retrieve the <code>UserDetails</code>. * * @param user the fully populated <code>UserDetails</code> to place in the cache */ void putUserInCache(UserDetails user); /** * Removes the specified user from the cache. The <code>username</code> is the key used to remove the user. * If the user is not found, the method should simply return (not thrown an exception).<P>Some cache * implementations may not support eviction from the cache, in which case they should provide appropriate * behaviour to alter the user in either its documentation, via an exception, or through a log message.</p> * * @param username to be evicted from the cache */ void removeUserFromCache(String username);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -