forked from cleverage/processuibundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcessSchedule.orm.xml
22 lines (22 loc) · 1.01 KB
/
ProcessSchedule.orm.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<constraint-mapping xmlns="http://symfony.com/schema/dic/constraint-mapping">
<class name="CleverAge\UiProcessBundle\Entity\ProcessSchedule">
<property name="process">
<constraint name="CleverAge\UiProcessBundle\Validator\IsValidProcessCode" />
</property>
<property name="expression">
<constraint name="When">
<option name="expression">this.getType().value == "cron"</option>
<option name="constraints">
<constraint name="CleverAge\UiProcessBundle\Validator\CronExpression" />
</option>
</constraint>
<constraint name="When">
<option name="expression">this.getType().value == "every"</option>
<option name="constraints">
<constraint name="CleverAge\UiProcessBundle\Validator\EveryExpression" />
</option>
</constraint>
</property>
</class>
</constraint-mapping>