org.camunda.bpm.extension.keycloak.cache.PassThroughCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-bpm-identity-keycloak Show documentation
Show all versions of camunda-bpm-identity-keycloak Show documentation
A Camunda Identity Provider Plugin for Keycloak
package org.camunda.bpm.extension.keycloak.cache;
import java.util.function.Function;
/**
* A no-op implementation of the QueryCache.
*/
public class PassThroughCache implements QueryCache {
/**
* {@inheritDoc}
*/
@Override
public V getOrCompute(K key, Function computation) {
return computation.apply(key);
}
/**
* {@inheritDoc}
*/
@Override
public void clear() {
// no-op
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy