org.infinispan.configuration.cache.CustomInterceptorsConfiguration Maven / Gradle / Ivy
package org.infinispan.configuration.cache;
import java.util.Collections;
import java.util.List;
/**
* Configures custom interceptors to be added to the cache.
*
* @author pmuir
*/
public class CustomInterceptorsConfiguration {
private List interceptors;
CustomInterceptorsConfiguration(List interceptors) {
this.interceptors = interceptors;
}
public CustomInterceptorsConfiguration() {
this.interceptors = Collections.emptyList();
}
/**
* This specifies a list of {@link InterceptorConfiguration} instances to be referenced when building the interceptor
* chain.
* @return A list of {@link InterceptorConfiguration}s. May be an empty list, will never be null.
*/
public List interceptors() {
return interceptors;
}
public CustomInterceptorsConfiguration interceptors(List interceptors) {
this.interceptors = interceptors;
return this;
}
@Override
public String toString() {
return "CustomInterceptorsConfiguration [interceptors=" + interceptors + "]";
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CustomInterceptorsConfiguration that = (CustomInterceptorsConfiguration) o;
if (interceptors != null ? !interceptors.equals(that.interceptors) : that.interceptors != null)
return false;
return true;
}
@Override
public int hashCode() {
return interceptors != null ? interceptors.hashCode() : 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy