
io.quarkus.cache.deployment.CacheNamesBuildItem Maven / Gradle / Ivy
package io.quarkus.cache.deployment;
import java.util.Set;
import io.quarkus.builder.item.SimpleBuildItem;
/**
* This build item is used to pass the full list of cache names from the validation step to the recording step.
*/
public final class CacheNamesBuildItem extends SimpleBuildItem {
private final Set names;
public CacheNamesBuildItem(Set names) {
this.names = names;
}
public Set getNames() {
return names;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy