Skip to content

Commit aa0fe88

Browse files
jlabedogitbook-bot
authored andcommitted
GITBOOK-846: add interceptor expression documentation
1 parent 4605f11 commit aa0fe88

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

modelling/extending-messaging-middlewares/interceptors.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,11 @@ The precedence is done within a specific [interceptor type](interceptors.md#inte
4747
Every interceptor has `Pointcut` attribute, which describes for specific interceptor, which endpoints it should intercept.
4848

4949
* `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
5051
* `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`
5255

5356
## Interceptor Types
5457

0 commit comments

Comments
 (0)