[JBoss JIRA] (DROOLS-1838) Referencing condition literals in action columns in Web based decision table
by Jozef Marko (Jira)
[ https://issues.jboss.org/browse/DROOLS-1838?page=com.atlassian.jira.plugi... ]
Jozef Marko closed DROOLS-1838.
-------------------------------
Resolution: Out of Date
User is able to bind field even in negated condition.
!Screenshot from 2019-04-10 15-14-50.png|thumbnail!
> Referencing condition literals in action columns in Web based decision table
> ----------------------------------------------------------------------------
>
> Key: DROOLS-1838
> URL: https://issues.jboss.org/browse/DROOLS-1838
> Project: Drools
> Issue Type: Feature Request
> Components: Guided Decision Table Editor
> Affects Versions: 5.5.0.Final
> Reporter: Roman Novak
> Assignee: Michael Anstis
> Priority: Major
> Attachments: Screenshot from 2019-04-10 15-14-50.png
>
>
> The use case is to avoid reduncancy in entering data in the web based decision table.
> The redundance occurs, when a "not" condition is used in the LHS of a rule, and exactly the entered condition (in the example rule below it is "demo") should be used/referenced on the RHS of the rule.
> The solution proposal is:
> * it is already possible to reference binding variables in Guvnor decision tables via "=". e.g. set the default value of an action column by "=$p.name" (again with the example below in mind).l
> * it should be possible to reference the actual column content via the mandatory "Column header (description)" field in a way, so that during the generation of the rule code the content of the column in the editor is placed into the action field.
> * suggestion for (de-)referencing the column: ={<column header>}
> Example rule to illustrate the problem:
> declare Address
> streetName : String
> end
>
> declare Person
> name : String
> end
>
> rule "Using a declared Type"
> when
> $p : Person( name == "Bob" )
> not Address(streetName == "demo")
> then
> // if the address does not exist, we create it... (just for example)
> Address addr = new Address();
> // how can the streetName "demo" from above be referenced ? in a normal rule it is not possible! (scope delimiter "not")
> addr.setStreetName("demo");
> insert( addr );
> end
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 3 months
[JBoss JIRA] (DROOLS-1838) Referencing condition literals in action columns in Web based decision table
by Jozef Marko (Jira)
[ https://issues.jboss.org/browse/DROOLS-1838?page=com.atlassian.jira.plugi... ]
Jozef Marko updated DROOLS-1838:
--------------------------------
Attachment: Screenshot from 2019-04-10 15-14-50.png
> Referencing condition literals in action columns in Web based decision table
> ----------------------------------------------------------------------------
>
> Key: DROOLS-1838
> URL: https://issues.jboss.org/browse/DROOLS-1838
> Project: Drools
> Issue Type: Feature Request
> Components: Guided Decision Table Editor
> Affects Versions: 5.5.0.Final
> Reporter: Roman Novak
> Assignee: Michael Anstis
> Priority: Major
> Attachments: Screenshot from 2019-04-10 15-14-50.png
>
>
> The use case is to avoid reduncancy in entering data in the web based decision table.
> The redundance occurs, when a "not" condition is used in the LHS of a rule, and exactly the entered condition (in the example rule below it is "demo") should be used/referenced on the RHS of the rule.
> The solution proposal is:
> * it is already possible to reference binding variables in Guvnor decision tables via "=". e.g. set the default value of an action column by "=$p.name" (again with the example below in mind).l
> * it should be possible to reference the actual column content via the mandatory "Column header (description)" field in a way, so that during the generation of the rule code the content of the column in the editor is placed into the action field.
> * suggestion for (de-)referencing the column: ={<column header>}
> Example rule to illustrate the problem:
> declare Address
> streetName : String
> end
>
> declare Person
> name : String
> end
>
> rule "Using a declared Type"
> when
> $p : Person( name == "Bob" )
> not Address(streetName == "demo")
> then
> // if the address does not exist, we create it... (just for example)
> Address addr = new Address();
> // how can the streetName "demo" from above be referenced ? in a normal rule it is not possible! (scope delimiter "not")
> addr.setStreetName("demo");
> insert( addr );
> end
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 3 months
[JBoss JIRA] (WFLY-10607) Fix intermittent failures in *EJBForwardingTestCase
by Richard Achmatowicz (Jira)
[ https://issues.jboss.org/browse/WFLY-10607?page=com.atlassian.jira.plugin... ]
Richard Achmatowicz commented on WFLY-10607:
--------------------------------------------
The RemotingRemoteTransactionPeer is a component on the server side that is accessed by a component on the client side and used to remotely control transaction state. It does not use the same service type as regular EJB channels when creating the connection (i.e. it uses "jboss.jta" instead of "jboss.ejb") and this affects the lookup of an AuthenticationContext by Elytron. I'm suspecting this is a security configuration issue.
> Fix intermittent failures in *EJBForwardingTestCase
> ---------------------------------------------------
>
> Key: WFLY-10607
> URL: https://issues.jboss.org/browse/WFLY-10607
> Project: WildFly
> Issue Type: Bug
> Components: EJB, Test Suite
> Affects Versions: 16.0.0.Final
> Reporter: Petr Kremensky
> Assignee: Richard Achmatowicz
> Priority: Major
>
> The tests were ignored by https://github.com/wildfly/wildfly/pull/10563
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 3 months