Author: angela
Date: Tue Jan 16 08:59:20 2007
New Revision: 496762
URL: http://svn.apache.org/viewvc?view=rev&rev=496762
Log:
work in progress
- cachebehaviour.manual not used
Modified:
jackrabbit/trunk/contrib/spi/jcr2spi/src/main/java/org/apache/jackrabbit/jcr2spi/config/CacheBehaviour.java
Modified: jackrabbit/trunk/contrib/spi/jcr2spi/src/main/java/org/apache/jackrabbit/jcr2spi/config/CacheBehaviour.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/contrib/spi/jcr2spi/src/main/java/org/apache/jackrabbit/jcr2spi/config/CacheBehaviour.java?view=diff&rev=496762&r1=496761&r2=496762
==============================================================================
--- jackrabbit/trunk/contrib/spi/jcr2spi/src/main/java/org/apache/jackrabbit/jcr2spi/config/CacheBehaviour.java
(original)
+++ jackrabbit/trunk/contrib/spi/jcr2spi/src/main/java/org/apache/jackrabbit/jcr2spi/config/CacheBehaviour.java
Tue Jan 16 08:59:20 2007
@@ -24,16 +24,6 @@
public final class CacheBehaviour {
/**
- * Cache maintenance is stictly done on a manual basis even though the
- * repository implementation might support observation. Only the result of a
- * <code>save()</code> upon a transient modification is reflected in the
- * cache. The client has to call {@link javax.jcr.Item#refresh(boolean)}
- * <i>manually</i> to get the full effect of his action. E.g. workspace
- * operations will not change any cached state.
- */
- public static final CacheBehaviour MANUAL = new CacheBehaviour();
-
- /**
* Cache maintenance is done by invalidating affected items of an operation
* and forcing the jcr2spi implementation to reload the item states when
* they are accessed next time. No event listener is used for cache
|