# If this module adds to the core web.xml, this properties file
# may be used to specify dependencies between the filters.
#
#If the core's web.xml has the following mappings:
#
#
# A
# /*
#
#
# B
# /*
#
#
# C
# /*
#
#
#And this module's web.xml has the following mappings:
#
#
# X
# /*
#
#
# Y
# /*
#
#
# Z
# /*
#
#
#If Y has to run before B, the dependency is "Y=before(B)" and the resulting order is:
# A, X, Y, B, C, Z (if no more dependencies are stated).
#If Y has to run after B, the dependency is "Y=after(B)" and the reuslting order is:
# A, B, X, Y, C, Z (if no more dependencies are stated).
#
#Shortly, dependencies estabilish a partial order between the core and modules' mappings and
# the merging preserves the local total order of each modules' mappings.
ContextFilter=before(RequestChecksumFilter)