Author: mcucchiara
Date: Thu Oct 20 15:29:54 2011
New Revision: 1186849
URL: http://svn.apache.org/viewvc?rev=1186849&view=rev
Log:
Removed useless castes
Added:
commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/CacheFactory.java
Added:
commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/CacheFactory.java
URL:
http://svn.apache.org/viewvc/commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/CacheFactory.java?rev=1186849&view=auto
==============================================================================
---
commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/CacheFactory.java
(added)
+++
commons/proper/ognl/branches/new-cache-approach/src/main/java/org/apache/commons/ognl/internal/CacheFactory.java
Thu Oct 20 15:29:54 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 CacheFactory
+{
+
+ public static <K,V> Cache<K,V> createCache(CacheEntryFactory<K,V>
entryFactory )
+ {
+ return new ConcurrentHashMapCache<K, V>(entryFactory );
+ }
+
+ public static <V> ClassCache<V> createClassCache( )
+ {
+ return createClassCache( null );
+ }
+
+ public static <V> ClassCache<V> createClassCache(
ClassCacheEntryFactory<V> entryFactory )
+ {
+ return new ConcurrentClassCache<V>(entryFactory );
+ }
+}