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

org.apache.shiro.mgt.CachingSecurityManager Maven / Gradle / Ivy

There is a newer version: 3.9
Show newest version
/*
 * 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.shiro.mgt;

import org.apache.shiro.cache.CacheManager;
import org.apache.shiro.cache.CacheManagerAware;
import org.apache.shiro.util.Destroyable;
import org.apache.shiro.util.LifecycleUtils;


/**
 * A very basic starting point for the SecurityManager interface that merely provides logging and caching
 * support.  All actual {@code SecurityManager} method implementations are left to subclasses.
 * 

* Change in 1.0 - a default {@code CacheManager} instance is not created by default during * instantiation. As caching strategies can vary greatly depending on an application's needs, a {@code CacheManager} * instance must be explicitly configured if caching across the framework is to be enabled. * * @since 0.9 */ public abstract class CachingSecurityManager implements SecurityManager, Destroyable, CacheManagerAware { /** * The CacheManager to use to perform caching operations to enhance performance. Can be null. */ private CacheManager cacheManager; /** * Default no-arg constructor that will automatically attempt to initialize a default cacheManager */ public CachingSecurityManager() { } /** * Returns the CacheManager used by this SecurityManager. * * @return the cacheManager used by this SecurityManager */ public CacheManager getCacheManager() { return cacheManager; } /** * Sets the CacheManager used by this {@code SecurityManager} and potentially any of its * children components. *

* After the cacheManager attribute has been set, the template method * {@link #afterCacheManagerSet afterCacheManagerSet()} is executed to allow subclasses to adjust when a * cacheManager is available. * * @param cacheManager the CacheManager used by this {@code SecurityManager} and potentially any of its * children components. */ public void setCacheManager(CacheManager cacheManager) { this.cacheManager = cacheManager; afterCacheManagerSet(); } /** * Template callback to notify subclasses that a * {@link org.apache.shiro.cache.CacheManager CacheManager} has been set and is available for use via the * {@link #getCacheManager getCacheManager()} method. */ protected void afterCacheManagerSet() { } /** * Destroys the {@link #getCacheManager() cacheManager} via {@link LifecycleUtils#destroy LifecycleUtils.destroy}. */ public void destroy() { LifecycleUtils.destroy(getCacheManager()); this.cacheManager = null; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy