All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hazelcast.cache.HazelcastMemberCachingProvider Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
/*
 * Copyright (c) 2008-2021, Hazelcast, Inc. All Rights Reserved.
 *
 * Licensed 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 com.hazelcast.cache;

import javax.cache.CacheManager;
import javax.cache.configuration.OptionalFeature;
import javax.cache.spi.CachingProvider;
import java.net.URI;
import java.util.Properties;

/**
 * Member-side {@link CachingProvider} implementation. Its fully-qualified
 * class name can be used to request the member-side {@code CachingProvider}
 * implementation. Examples:
 * 
    *
  • * Programmatically, using {@link javax.cache.Caching#getCachingProvider(String)}: *
     * {@code
     * CachingProvider memberSideCachingProvider = Caching.getCachingProvider("com.hazelcast.cache.HazelcastMemberCachingProvider");
     * }
     * 
    *
  • *
  • * Declaratively, using the {@code javax.cache.spi.CachingProvider} system property * as specified in {@link javax.cache.Caching}. *
     * {@code
     * // alternatively, set the system property on the java command line:
     * // java -Djavax.cache.spi.CachingProvider=com.hazelcast.cache.HazelcastMemberCachingProvider
     * System.setProperty("javax.cache.spi.CachingProvider", "com.hazelcast.cache.HazelcastMemberCachingProvider");
     * CachingProvider memberSideCachingProvider = Caching.getCachingProvider();
     * }
     * 
    *
  • *
*/ public class HazelcastMemberCachingProvider implements CachingProvider { private final CachingProvider delegate; public HazelcastMemberCachingProvider() { this.delegate = new com.hazelcast.cache.impl.HazelcastServerCachingProvider(); } @Override public CacheManager getCacheManager(URI uri, ClassLoader classLoader, Properties properties) { return delegate.getCacheManager(uri, classLoader, properties); } @Override public ClassLoader getDefaultClassLoader() { return delegate.getDefaultClassLoader(); } @Override public URI getDefaultURI() { return delegate.getDefaultURI(); } @Override public Properties getDefaultProperties() { return delegate.getDefaultProperties(); } @Override public CacheManager getCacheManager(URI uri, ClassLoader classLoader) { return delegate.getCacheManager(uri, classLoader); } @Override public CacheManager getCacheManager() { return delegate.getCacheManager(); } @Override public void close() { delegate.close(); } @Override public void close(ClassLoader classLoader) { delegate.close(classLoader); } @Override public void close(URI uri, ClassLoader classLoader) { delegate.close(uri, classLoader); } @Override public boolean isSupported(OptionalFeature optionalFeature) { return delegate.isSupported(optionalFeature); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy