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

org.hibernate.cache.infinispan.naturalid.ReadOnlyAccess Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
package org.hibernate.cache.infinispan.naturalid;

import org.infinispan.util.logging.Log;
import org.infinispan.util.logging.LogFactory;

import org.hibernate.cache.CacheException;
import org.hibernate.cache.spi.access.SoftLock;

/**
 * @author Strong Liu 
 */
class ReadOnlyAccess extends TransactionalAccess {
	private static final Log log = LogFactory.getLog( ReadOnlyAccess.class );

	ReadOnlyAccess(NaturalIdRegionImpl naturalIdRegion) {
		super( naturalIdRegion );
	}


	@Override
	public boolean update(Object key, Object value) throws CacheException {
		throw new UnsupportedOperationException( "Illegal attempt to edit read only item" );
	}

	@Override
	public boolean afterUpdate(Object key, Object value, SoftLock lock) throws CacheException {
		throw new UnsupportedOperationException( "Illegal attempt to edit read only item" );
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy