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

org.summerb.utils.cache.CachesInvalidationNeeded Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
package org.summerb.utils.cache;

/**
 * That event is reserved for cases when we want to invalidate all caches in the
 * app
 * 
 * @author sergey.karpushin
 *
 */
public class CachesInvalidationNeeded {
	private String cause;

	public CachesInvalidationNeeded() {

	}

	public CachesInvalidationNeeded(String cause) {
		this.cause = cause;
	}

	public String getCause() {
		return cause;
	}

	public void setCause(String cause) {
		this.cause = cause;
	}

	@Override
	public String toString() {
		return "CachesInvalidationNeeded [cause=" + cause + "]";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy