List of usage examples for javax.persistence CacheStoreMode BYPASS
CacheStoreMode BYPASS
To view the source code for javax.persistence CacheStoreMode BYPASS.
Click Source Link
From source file:org.syncope.core.persistence.dao.impl.AbstractDAOImpl.java
protected CacheStoreMode getCacheStoreMode() { return entityManager.getProperties().containsKey(CACHE_STORE_MODE) ? (CacheStoreMode) entityManager.getProperties().get(CACHE_STORE_MODE) : CacheStoreMode.BYPASS; }