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

it.uniroma2.art.semanticturkey.changetracking.sail.BaseUpdateHandler Maven / Gradle / Ivy

There is a newer version: 13.1
Show newest version
package it.uniroma2.art.semanticturkey.changetracking.sail;

/**
 * Abstract base class of {@link UpdateHandler}s.
 * 
 * @author Manuel Fiorelli
 */
public abstract class BaseUpdateHandler implements UpdateHandler {
	private boolean corrupted = false;

	@Override
	public void recordCorruption() {
		this.corrupted = true;
	}

	@Override
	public boolean isCorrupted() {
		return corrupted;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy