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

io.quarkus.infinispan.client.runtime.cache.CacheInterceptionContext Maven / Gradle / Ivy

package io.quarkus.infinispan.client.runtime.cache;

import java.lang.annotation.Annotation;
import java.util.Collections;
import java.util.List;
import java.util.Objects;

public class CacheInterceptionContext {

    private final List interceptorBindings;

    public CacheInterceptionContext(List interceptorBindings) {
        Objects.requireNonNull(interceptorBindings);
        this.interceptorBindings = Collections.unmodifiableList(interceptorBindings);
    }

    public List getInterceptorBindings() {
        return interceptorBindings;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy