Class GenericEntryCallAcceptanceMatcher
java.lang.Object
kieker.analysis.behavior.acceptance.matcher.GenericEntryCallAcceptanceMatcher
- All Implemented Interfaces:
IEntryCallAcceptanceMatcher
public class GenericEntryCallAcceptanceMatcher extends java.lang.Object implements IEntryCallAcceptanceMatcher
Allows to match operation and class signatures regarding a set of patterns to decide
whether they belong to the user behavior.
- Since:
- 2.0.0
- Author:
- Reiner Jung
-
Constructor Summary
Constructors Constructor Description GenericEntryCallAcceptanceMatcher(java.util.List<java.util.regex.Pattern> classPatterns, java.util.List<java.util.regex.Pattern> operationPatterns, EAcceptanceMode mode)
-
Method Summary
Modifier and Type Method Description boolean
match(EntryCallEvent call)
Match whether the call is correct of interest for the application.
-
Constructor Details
-
GenericEntryCallAcceptanceMatcher
public GenericEntryCallAcceptanceMatcher(java.util.List<java.util.regex.Pattern> classPatterns, java.util.List<java.util.regex.Pattern> operationPatterns, EAcceptanceMode mode)
-
-
Method Details
-
match
Description copied from interface:IEntryCallAcceptanceMatcher
Match whether the call is correct of interest for the application.- Specified by:
match
in interfaceIEntryCallAcceptanceMatcher
- Parameters:
call
- one entry call event- Returns:
- true on success
-