Author: mcucchiara
Date: Fri Oct 21 23:48:40 2011
New Revision: 1187602
URL: http://svn.apache.org/viewvc?rev=1187602&view=rev
Log:
ReentrantReadWriteLock CacheFactory
Added:
commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCacheFactory.java
Added:
commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCacheFactory.java
URL:
http://svn.apache.org/viewvc/commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCacheFactory.java?rev=1187602&view=auto
==============================================================================
---
commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCacheFactory.java
(added)
+++
commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCacheFactory.java
Fri Oct 21 23:48:40 2011
@@ -0,0 +1,44 @@
+/*
+ * $Id$
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.commons.ognl.internal;
+
+import org.apache.commons.ognl.internal.entry.CacheEntryFactory;
+import org.apache.commons.ognl.internal.entry.ClassCacheEntryFactory;
+
+public class ReentrantReadWriteLockCacheFactory
+ implements CacheFactory
+{
+ public <K, V> Cache<K, V> createCache( CacheEntryFactory<K, V>
entryFactory )
+ {
+ return new ReentrantReadWriteLockCache<K, V>( entryFactory );
+ }
+
+ public <V> ClassCache<V> createClassCache( )
+ {
+ return createClassCache( null );
+ }
+
+ public <V> ClassCache<V> createClassCache( ClassCacheEntryFactory<V>
entryFactory )
+ {
+ return new ReentrantReadWriteLockClassCache<V>( entryFactory );
+ }
+}