ENTAXY-248 release 1.8.1

This commit is contained in:
2022-02-28 15:20:38 +03:00
parent 4d274c4fcc
commit c826adf1db
1958 changed files with 195926 additions and 10280 deletions

View File

@ -6,7 +6,7 @@
<parent>
<groupId>ru.entaxy.esb.system.core.permission</groupId>
<artifactId>permission</artifactId>
<version>1.8.0</version>
<version>1.8.1</version>
<relativePath>../../security/pom.xml</relativePath>
</parent>

View File

@ -49,10 +49,10 @@
<route id="test-permission" autoStartup="{{mode.dev}}">
<from uri="timer:test-permission?period=60&amp;repeatCount=1"/>
<to uri="bean-fix:permissionService?method=add(1, 'system', '2', 'system', 'send')"/>
<to uri="bean:permissionService?method=add(1, 'system', '2', 'system', 'send')"/>
<log message="CREATE PERMISSION RECORD ${body}"/>
<to uri="bean-fix:permissionService?method=getByAllParameters(1, 'system', '2', 'system', 'send')"/>
<to uri="bean:permissionService?method=getByAllParameters(1, 'system', '2', 'system', 'send')"/>
<log message="${body}"/>
<choice>
<when>
@ -65,7 +65,7 @@
</choice>
<doTry>
<to uri="bean-fix:permissionService?method=getByAllParameters(1, '4321', '4321', '4321', '4321')"/>
<to uri="bean:permissionService?method=getByAllParameters(1, '4321', '4321', '4321', '4321')"/>
<log message="GET NOT EXISTING RECORD: TEST FAILED"/>
<doCatch>
<exception>java.lang.Exception</exception>
@ -73,7 +73,7 @@
</doCatch>
</doTry>
<to uri="bean-fix:permissionService?method=remove(1, 'system', '2', 'system', 'send')"/>
<to uri="bean:permissionService?method=remove(1, 'system', '2', 'system', 'send')"/>
<log message="DELETE PERMISSION RECORD ${body}"/>
</route>