File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
modelling/extending-messaging-middlewares Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -47,8 +47,11 @@ The precedence is done within a specific [interceptor type](interceptors.md#inte
47
47
Every interceptor has ` Pointcut ` attribute, which describes for specific interceptor, which endpoints it should intercept.
48
48
49
49
* ` CLASS_NAME ` - indicates intercepting specific class or interface or class containing attribute on method or class level
50
+ * ` CLASS_NAME::METHOD_NAME ` - indicates intercepting specific method of class
50
51
* ` NAMESPACE* ` - Indicating all [ Endpoints] ( ../../messaging/messaging-concepts/message-endpoint/ ) starting with namespace prefix e.g. ` App\Domain\* `
51
- * ` expression||expression ` - Indicating one expression or another e.g. ` Product\*||Order\* `   ;
52
+ * ` expression || expression ` - Indicating one expression or another e.g. ` Product\*||Order\* `   ;
53
+ * ` expression && expression ` - Indicating one expression and another e.g.\
54
+ ` App\Domain\* && App\Attribute\RequireAdministrator `
52
55
53
56
## Interceptor Types
54
57
You can’t perform that action at this time.
0 commit comments