Class InstrumentationStep
java.lang.Object
com.atlassian.jira.web.filters.steps.instrumentation.InstrumentationStep
- All Implemented Interfaces:
FilterStep
Instruments at a top level a single JIRA HTTP request. This class can occasionally be called during periods
when the DI container is empty, so counters etc need to be tolerant of this fact.
- Since:
- v4.4
-
Method Summary
Modifier and TypeMethodDescriptionbeforeDoFilter(FilterCallContext callContext) This is called to before the filterChain.doFilter() method is calledstatic FilterStepcreate()finallyAfterDoFilter(FilterCallContext callContext) This is called after the filterChain.doFilter() method is called in a finally {} block
-
Method Details
-
create
-
beforeDoFilter
Description copied from interface:FilterStepThis is called to before the filterChain.doFilter() method is called- Specified by:
beforeDoFilterin interfaceFilterStep- Parameters:
callContext- the context of the filter step call
-
finallyAfterDoFilter
Description copied from interface:FilterStepThis is called after the filterChain.doFilter() method is called in a finally {} block- Specified by:
finallyAfterDoFilterin interfaceFilterStep- Parameters:
callContext- the context of the filter step call
-