public class DisabledCache<K,V> extends Object implements Cache<K,V>
Constructor and Description |
---|
DisabledCache() |
Modifier and Type | Method and Description |
---|---|
V |
get(K key)
This implementation does not do anything and always returns null.
|
V |
put(K key,
V value)
This implementation does not do anything (no caching) and always returns null.
|
V |
remove(K key)
This implementation does not do anything (no caching) and always returns null.
|
Copyright © 2017–2023 Okta. All rights reserved.