[JBoss JIRA] (JBRULES-3448) XLS Decision tables: Add support for Condition column DRL fragments
by Michael Anstis (JIRA)
Michael Anstis created JBRULES-3448:
---------------------------------------
Summary: XLS Decision tables: Add support for Condition column DRL fragments
Key: JBRULES-3448
URL: https://issues.jboss.org/browse/JBRULES-3448
Project: Drools
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Reporter: Michael Anstis
Assignee: Michael Anstis
Fix For: 5.5.0.Beta1
Condition columns in XLS Decision Tables have a row for Object type and a row for code "snippet". The code snippet is taken as predicates within the Object type; for example:-
{code}
CONDITION | CONDITION
----------------------------
MyFact
----------------------------
field1 == | field2 ==
----------------------------
a | b
{code}
This is rather limiting (and certainly not conducive to decision table round-tripping). Ideally we need to support:-
{code}
CONDITION
----------------------------------------------
MyFact( field1 == $param1, field2 == $param2 )
----------------------------------------------
----------------------------------------------
a,b
{code}
Even more ideally it'd be good to be able to register "column handlers" so this can be extended easily.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 8 months
[JBoss JIRA] (AS7-4437) Pls add a dmr handler to add and remove a single environment variable
by Michael Voegele (JIRA)
Michael Voegele created AS7-4437:
------------------------------------
Summary: Pls add a dmr handler to add and remove a single environment variable
Key: AS7-4437
URL: https://issues.jboss.org/browse/AS7-4437
Project: Application Server 7
Issue Type: Feature Request
Components: Domain Management
Affects Versions: 7.1.1.Final
Reporter: Michael Voegele
Assignee: Brian Stansberry
For adding a single jvm-option, operations exist for convenience:
add-jvm-option
remove-jvm-option
The same would be good for environment variables:
add-environment-variable
remove-environment-variable
At the moment, the same can only be achieved by writing the whole attribute environment-variables, which does not allow to add a *single* variable (if some already exist, the existing ones have to be included when writing the attribute):
{code:xml}
{
"operation" => "write-attribute",
"address" => [
("host" => "master"),
("server-config" => "server-1"),
("jvm" => "default")
],
"name" => "environment-variables",
"value" => [
{"foo1" => "bar1"},
{"foo2" => "bar2"}
]
}
{code}
Operations write-attribute and undefine-attribute have to be used.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 8 months