* @param eventType The type of event
* @param entry The entry that was affected.
* @param origin The origin of this event (optional)
*/
private void dispatchCacheMapAccessEvent(CacheMapAccessEventType eventType, CacheEntry entry, String origin) {
CacheMapAccessEvent event = new CacheMapAccessEvent(eventType, entry, origin);
// Guaranteed to return a non-null array
Object[] listeners = listenerList.getListenerList();
// Process the listeners last to first, notifying