Class CustomInterceptorsConfiguration
- java.lang.Object
-
- org.infinispan.configuration.cache.CustomInterceptorsConfiguration
-
- All Implemented Interfaces:
Matchable<CustomInterceptorsConfiguration>
,BaseConfigurationInfo
,ConfigurationInfo
@Deprecated public class CustomInterceptorsConfiguration extends java.lang.Object implements Matchable<CustomInterceptorsConfiguration>, ConfigurationInfo
Deprecated.Since 10.0, custom interceptors support will be removed and only modules will be able to define interceptorsConfigures custom interceptors to be added to the cache.- Author:
- pmuir
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
Deprecated.ElementDefinition
getElementDefinition()
Deprecated.int
hashCode()
Deprecated.java.util.List<InterceptorConfiguration>
interceptors()
Deprecated.This specifies a list ofInterceptorConfiguration
instances to be referenced when building the interceptor chain.CustomInterceptorsConfiguration
interceptors(java.util.List<InterceptorConfiguration> interceptors)
Deprecated.java.util.List<ConfigurationInfo>
subElements()
Deprecated.java.lang.String
toString()
Deprecated.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.infinispan.commons.configuration.BaseConfigurationInfo
attributes
-
-
-
-
Method Detail
-
interceptors
public java.util.List<InterceptorConfiguration> interceptors()
Deprecated.This specifies a list ofInterceptorConfiguration
instances to be referenced when building the interceptor chain.- Returns:
- A list of
InterceptorConfiguration
s. May be an empty list, will never be null.
-
interceptors
public CustomInterceptorsConfiguration interceptors(java.util.List<InterceptorConfiguration> interceptors)
Deprecated.
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
Deprecated.- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCode
in classjava.lang.Object
-
getElementDefinition
public ElementDefinition getElementDefinition()
Deprecated.- Specified by:
getElementDefinition
in interfaceBaseConfigurationInfo
- Returns:
- the
ElementDefinition
of the configuration.
-
subElements
public java.util.List<ConfigurationInfo> subElements()
Deprecated.- Specified by:
subElements
in interfaceConfigurationInfo
- Returns:
- the list of sub elements.
-
-