urn:infinispan:config:5.1
element interceptor

Super Types
{urn:infinispan:config:5.1} (restriction)

Properties
This component is not nillable.

Model
<interceptor
  after = xs:string
  before = xs:string
  class = xs:string
  index = xs:int
  position = xs:string>
properties?
</interceptor>


Nested Element Summary
tns:propertiesproperties
          

Attribute Summary
 xs:stringafter
          Dictates that the custom interceptor appears immediately after the specified interceptor. 
 xs:stringbefore
          Dictates that the custom interceptor appears immediately before the specified interceptor. 
 xs:stringclass
          A fully qualified class name of the new custom interceptor to add to the configuration. 
 xs:intindex
          Specifies a position in the interceptor chain to place the new interceptor. 
 xs:stringposition
          Specifies a position where to place the new interceptor. 

Attribute Detail

after

Dictates that the custom interceptor appears immediately after the specified interceptor. If the specified interceptor is not found in the interceptor chain, a ConfigurationException will be thrown when the cache starts.

Type:
xs:string
Use:
optional
Form:
unqualified

before

Dictates that the custom interceptor appears immediately before the specified interceptor. If the specified interceptor is not found in the interceptor chain, a ConfigurationException will be thrown when the cache starts.

Type:
xs:string
Use:
optional
Form:
unqualified

class

A fully qualified class name of the new custom interceptor to add to the configuration.

Type:
xs:string
Use:
optional
Form:
unqualified

index

Specifies a position in the interceptor chain to place the new interceptor. The index starts at 0 and goes up to the number of interceptors in a given configuration. A ConfigurationException is thrown if the index is less than 0 or greater than the maximum number of interceptors in the chain.

Type:
xs:int
Use:
optional
Form:
unqualified

position

Specifies a position where to place the new interceptor. Allowed values are FIRST, LAST, and OTHER_THAN_FIRST_OR_LAST

Type:
xs:string
Use:
optional
Form:
unqualified

Source
<xs:element maxOccurs="unbounded" minOccurs="0" name="interceptor">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="properties" type="tns:properties"/>
</xs:sequence>
<xs:attribute name="after" type="xs:string">
</xs:attribute>
<xs:attribute name="before" type="xs:string">
</xs:attribute>
<xs:attribute name="class" type="xs:string">
</xs:attribute>
<xs:attribute name="index" type="xs:int">
</xs:attribute>
<xs:attribute name="position" type="xs:string">
</xs:attribute>
</xs:complexType>
</xs:element>


Submit a bug or a feature.
Created by xsddoc, a sub project of xframe, hosted at http://xframe.sourceforge.net.