blob: a29da23988f17dd77325aafceee79cfa4e98c99c [file] [log] [blame]
package org.apache.archiva.redback.components.cache.impl;
/*
* 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.
*/
import org.apache.archiva.redback.components.cache.AbstractCache;
import org.apache.archiva.redback.components.cache.CacheStatistics;
import org.apache.archiva.redback.components.cache.Cache;
/**
* Simple no-op provider of a Cache.
* <p/>
* Nothing is stored, nothing is tracked, no statistics even.
*
* @author Olivier Lamy
* @since 5 February, 2007
*/
public class NoCacheCache<V, T>
extends AbstractCache<V, T>
implements Cache<V, T>
{
static final class NoStats
implements CacheStatistics
{
public void clear()
{
/* do nothing */
}
public double getCacheHitRate()
{
return 0;
}
public long getCacheHits()
{
return 0;
}
public long getCacheMiss()
{
return 0;
}
public long getSize()
{
return 0;
}
public long getInMemorySize()
{
return 0;
}
}
private CacheStatistics stats = new NoStats();
public void clear()
{
/* do nothing */
}
public T get( V key )
{
return null;
}
public CacheStatistics getStatistics()
{
return stats;
}
public boolean hasKey( V key )
{
return false;
}
public T put( V key, T value )
{
return null;
}
public void register( V key, T value )
{
/* do nothing */
}
public T remove( V key )
{
return null;
}
}