All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsr107.ri.event.RICacheEntryEvent Maven / Gradle / Ivy

There is a newer version: 62
Show newest version
/**
 *  Copyright 2011-2013 Terracotta, Inc.
 *  Copyright 2011-2013 Oracle America Incorporated
 *
 *  Licensed 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.jsr107.ri.event;

import javax.cache.Cache;
import javax.cache.event.CacheEntryEvent;
import javax.cache.event.EventType;

/**
 * The reference implementation of the {@link CacheEntryEvent}.
 *
 * @param  the type of keys maintained by this cache
 * @param  the type of cached values
 * @author Greg Luck
 * @since 1.0
 */
public class RICacheEntryEvent extends CacheEntryEvent {

  private K key;
  private V value;
  private V oldValue;
  private boolean oldValueAvailable;

  /**
   * Constructs a cache entry event from a given cache as source
   * (without an old value)
   *
   * @param source the cache that originated the event
   * @param key    the key
   * @param value  the value
   */
  public RICacheEntryEvent(Cache source, K key, V value, EventType eventType) {
    super(source, eventType);
    this.key = key;
    this.value = value;
    this.oldValue = null;
    this.oldValueAvailable = false;
  }

  /**
   * Constructs a cache entry event from a given cache as source
   * (with an old value)
   *
   * @param source   the cache that originated the event
   * @param key      the key
   * @param value    the value
   * @param oldValue the oldValue
   */
  public RICacheEntryEvent(Cache source, K key, V value, V oldValue, EventType eventType) {
    super(source, eventType);
    this.key = key;
    this.value = value;
    this.oldValue = oldValue;
    this.oldValueAvailable = true;
  }

  /**
   * Constructs a cache entry event from a given cache as source
   * with an old value, explicitly specifying whether old value is available
   *
   * @param source            the cache that originated the event
   * @param key               the key
   * @param value             the value
   * @param oldValue          the oldValue
   * @param oldValueAvailable indicates whether old value is available
   */
  public RICacheEntryEvent(Cache source, K key, V value, V oldValue, EventType eventType, boolean oldValueAvailable) {
    super(source, eventType);
    this.key = key;
    this.value = value;
    this.oldValue = oldValue;
    this.oldValueAvailable = oldValueAvailable;
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public K getKey() {
    return key;
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public V getValue() {
    return value;
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public V getOldValue() throws UnsupportedOperationException {
    if (isOldValueAvailable()) {
      return oldValue;
    } else {
      return null;
    }
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public  T unwrap(Class clazz) {
    if (clazz != null && clazz.isInstance(this)) {
      return (T) this;
    } else {
      throw new IllegalArgumentException("The class " + clazz + " is unknown to this implementation");
    }
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public boolean isOldValueAvailable() {
    return oldValueAvailable;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy