1 5 package com.opensymphony.oscache.base.events; 6 7 import com.opensymphony.oscache.base.Cache; 8 9 import java.util.Date ; 10 11 18 public final class CachewideEvent extends CacheEvent { 19 22 private Cache cache = null; 23 24 27 private Date date = null; 28 29 40 public CachewideEvent(Cache cache, Date date, String origin) { 41 super(origin); 42 this.date = date; 43 this.cache = cache; 44 } 45 46 49 public Cache getCache() { 50 return cache; 51 } 52 53 56 public Date getDate() { 57 return date; 58 } 59 } 60 | Popular Tags |