Coverage report

  %line %branch
org.apache.jetspeed.cache.impl.EhCacheEventListener
0% 
0% 

 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one or more
 3  
  * contributor license agreements.  See the NOTICE file distributed with
 4  
  * this work for additional information regarding copyright ownership.
 5  
  * The ASF licenses this file to You under the Apache License, Version 2.0
 6  
  * (the "License"); you may not use this file except in compliance with
 7  
  * the License.  You may obtain a copy of the License at
 8  
  * 
 9  
  *      http://www.apache.org/licenses/LICENSE-2.0
 10  
  * 
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.apache.jetspeed.cache.impl;
 18  
 
 19  
 import net.sf.ehcache.CacheException;
 20  
 import net.sf.ehcache.Ehcache;
 21  
 import net.sf.ehcache.Element;
 22  
 import net.sf.ehcache.event.CacheEventListener;
 23  
 
 24  0
 public class EhCacheEventListener implements CacheEventListener
 25  
 {
 26  
 
 27  
 	public Object clone() throws CloneNotSupportedException
 28  
 	{
 29  0
 		return null;
 30  
 	}
 31  
 
 32  
 
 33  
 	public void dispose()
 34  
 	{
 35  
 		// TODO Auto-generated method stub
 36  
 
 37  0
 	}
 38  
 
 39  
 	public void notifyElementEvicted(Ehcache cache, Element arg1)
 40  
 	{
 41  
 //		System.out.println("notifyElementEvicted cache=" + cache.getName() + " - element = " + arg1.getObjectKey().toString());
 42  
 
 43  0
 	}
 44  
 
 45  
 	public void notifyElementExpired(Ehcache cache, Element arg1)
 46  
 	{
 47  
 //		System.out.println("notifyElementExpired cache=" + cache.getName() + " - element = " + arg1.getObjectKey().toString());
 48  
 
 49  0
 	}
 50  
 
 51  
 	public void notifyElementPut(Ehcache cache, Element arg1)
 52  
 			throws CacheException
 53  
 	{
 54  
 //		System.out.println("notifyElementPut cache=" + cache.getName() + " - element = " + arg1.getObjectKey().toString());
 55  
 
 56  0
 	}
 57  
 
 58  
 	public void notifyElementRemoved(Ehcache cache, Element arg1)
 59  
 			throws CacheException
 60  
 	{
 61  
 //		System.out.println("notifyElementRemoved cache=" + cache.getName() + " - element = " + arg1.getObjectKey().toString());
 62  
 
 63  0
 	}
 64  
 
 65  
 	public void notifyElementUpdated(Ehcache cache, Element arg1)
 66  
 			throws CacheException
 67  
 	{
 68  
 //		System.out.println("notifyElementUpdated cache=" + cache.getName() + " - element = " + arg1.getObjectKey().toString());
 69  0
 	}
 70  
 
 71  
 	public void notifyRemoveAll(Ehcache cache)
 72  
 	{
 73  
 //		System.out.println("notifyRemoveAll cache=" + cache.getName() );
 74  0
 	}
 75  
 
 76  
 }

This report is generated by jcoverage, Maven and Maven JCoverage Plugin.