org.apache.jetspeed.cache.general.SimpleHashMapCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetspeed-cm Show documentation
Show all versions of jetspeed-cm Show documentation
Jetspeed Component Manager
The 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.jetspeed.cache.general;
import java.util.HashMap;
/**
*
* SimpleHashMapCache
*
*
*
*
* @author Scott T. Weaver
* @version $Id: SimpleHashMapCache.java 516448 2007-03-09 16:25:47Z ate $
*
*/
public class SimpleHashMapCache implements GeneralCache
{
protected HashMap cache;
/**
*
*/
public SimpleHashMapCache()
{
super();
cache = new HashMap();
}
/**
*
* get
*
*
* @see org.apache.jetspeed.cache.general.GeneralCache#get(java.lang.String)
* @param key
* @return
*/
public Object get( String key )
{
return cache.get(key);
}
/**
*
* put
*
*
* @see org.apache.jetspeed.cache.general.GeneralCache#put(java.lang.String, java.lang.Object)
* @param key
* @param value
*/
public void put( String key, Object value )
{
cache.put(key, value);
}
/**
*
* contains
*
*
* @see org.apache.jetspeed.cache.general.GeneralCache#contains(java.lang.String)
* @param key
* @return
*/
public boolean contains( String key )
{
return cache.containsKey(key);
}
/**
*
* remove
*
*
* @see org.apache.jetspeed.cache.general.GeneralCache#remove(java.lang.String)
* @param key
*/
public Object remove( String key )
{
return cache.remove(key);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy