Skip to content

Commit e1f3a8f

Browse files
authored
alias documentation (#2462)
Signed-off-by: Mark Herwege <[email protected]>
1 parent 03878ac commit e1f3a8f

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

configuration/persistence.md

+18-2
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ The syntax is as follows:
156156

157157
```java
158158
Items {
159-
<itemlist1> [-> "<alias1>"] : [strategy = <strategy1>, <strategy2>, ...] [filter = <filter1>, <filter2>, ...]
160-
<itemlist2> [-> "<alias2>"] : [strategy = <strategyX>, <strategyY>, ...]
159+
<itemlist1> : [strategy = <strategy1>, <strategy2>, ...] [filter = <filter1>, <filter2>, ...]
160+
<itemlist2> : [strategy = <strategyX>, <strategyY>, ...]
161161
...
162162

163163
}
@@ -176,6 +176,22 @@ The entries are additive.
176176
This means if one Item appears in more than one `<itemlist>` either directly or indirectly (e.g. `*` which includes all Items or as a member of a Group used in `<groupName>*`), all the strategies strategies listed on all those lines apply to that Item.
177177
In the same way, an Item defined by a `!<itemName>` or `!<groupName>*` will be excluded after all additive rules have been applied.
178178

179+
### Aliases
180+
181+
This section defines alternative names for items that will be used in storage by the persistence service.
182+
The syntax is as follows:
183+
184+
```java
185+
Aliases {
186+
<itemName1> -> <alias1>
187+
<itemName2> -> <alias2>
188+
...
189+
190+
}
191+
```
192+
193+
Note that aliases should be unique and should not have the same name as an existing item that is also stored in the persistence service.
194+
179195
Below you will find a complete example persistence configuration file:
180196

181197
```java

0 commit comments

Comments
 (0)