![JAR search and dependency download from the Maven repository](/logo.png)
com.okta.sdk.impl.cache.DisabledCache Maven / Gradle / Ivy
/*
* Copyright 2014 Stormpath, Inc.
* Modifications Copyright 2018 Okta, Inc.
*
* 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.okta.sdk.impl.cache;
import com.okta.sdk.cache.Cache;
/**
* A disabled implementation that does nothing. This is useful for a CacheManager implementation to return instead
* of retuning null. Non-null guarantees reduce a program's cyclomatic complexity.
*
* @since 0.5.0
*/
public class DisabledCache implements Cache {
/**
* This implementation does not do anything and always returns null.
*
* @return null always.
*/
@Override
public V get(K key) {
return null;
}
/**
* This implementation does not do anything (no caching) and always returns null.
*
* @param key the key used to identify the object being stored.
* @param value the value to be stored in the cache.
* @return null always.
*/
@Override
public V put(K key, V value) {
return null;
}
/**
* This implementation does not do anything (no caching) and always returns null.
*
* @param key the key used to identify the object being stored.
* @return null always.
*/
@Override
public V remove(K key) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy