📄 resourcecache.java
字号:
package org.apache.velocity.runtime.resource;
/*
* Copyright 2000-2001,2004 The Apache Software Foundation.
*
* 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.
*/
import java.util.Iterator;
import org.apache.velocity.runtime.RuntimeServices;
/**
* Interface that defines the shape of a pluggable resource cache
* for the included ResourceManager
*
* @author <a href="mailto:geirm@optonline.net">Geir Magnusson Jr.</a>
* @version $Id: ResourceCache.java,v 1.1.8.1 2004/03/03 23:23:01 geirm Exp $
*/
public interface ResourceCache
{
/**
* initializes the ResourceCache. Will be
* called before any utilization
*
* @param rs RuntimeServices to use for logging, etc
*/
public void initialize( RuntimeServices rs );
/**
* retrieves a Resource from the
* cache
*
* @param resourceKey key for Resource to be retrieved
* @return Resource specified or null if not found
*/
public Resource get( Object resourceKey );
/**
* stores a Resource in the cache
*
* @param resourceKey key to associate with the Resource
* @param resource Resource to be stored
* @return existing Resource stored under this key, or null if none
*/
public Resource put( Object resourceKey, Resource resource );
/**
* removes a Resource from the cache
*
* @param resourceKey resource to be removed
* @param Resource stored under key
*/
public Resource remove( Object resourceKey );
/**
* returns an Iterator of Keys in the cache
*/
public Iterator enumerateKeys();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -