Bug 735 - Part 1: Update ietf-restconf and ietf-yangtypes to newer versions
[yangtools.git] / common / object-cache-guava / src / main / java / org / opendaylight / yangtools / objcache / guava / GuavaObjectCache.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.objcache.guava;
9
10 import org.opendaylight.yangtools.objcache.spi.AbstractObjectCache;
11
12 import com.google.common.base.FinalizableReferenceQueue;
13 import com.google.common.cache.CacheBuilder;
14 import com.google.common.cache.CacheBuilderSpec;
15
16 final class GuavaObjectCache extends AbstractObjectCache {
17         public GuavaObjectCache(final FinalizableReferenceQueue queue, final CacheBuilderSpec spec) {
18                 super(CacheBuilder.from(spec).softValues().build(), queue);
19         }
20 }