[JBoss JIRA] (DROOLS-4962) [GSS](7.z) A Spreadsheet decision tables does not convert to a DRL file correctly when a Function is being used in the RuleTable constraints
by Toni Rikkola (Jira)
[ https://issues.redhat.com/browse/DROOLS-4962?page=com.atlassian.jira.plug... ]
Toni Rikkola updated DROOLS-4962:
---------------------------------
Tester: Jozef Marko
Labels: drools-tools (was: )
> [GSS](7.z) A Spreadsheet decision tables does not convert to a DRL file correctly when a Function is being used in the RuleTable constraints
> --------------------------------------------------------------------------------------------------------------------------------------------
>
> Key: DROOLS-4962
> URL: https://issues.redhat.com/browse/DROOLS-4962
> Project: Drools
> Issue Type: Bug
> Components: XLS Decision Table Editor
> Reporter: Toni Rikkola
> Assignee: Toni Rikkola
> Priority: Major
> Labels: drools-tools
>
> 1. Create a "test_functions" project in the "MySpace" space.
> 2. Create a "Person" Data Object
> {code:java}
> package com.myspace.test_functions;
> /**
> * This class was automatically generated by the data modeler tool.
> */
> public class Person implements java.io.Serializable {
> static final long serialVersionUID = 1L;
> @org.kie.api.definition.type.Label("Gender")
> private java.lang.String gender;
> @org.kie.api.definition.type.Label("Is Married")
> private java.lang.Boolean married;
> @org.kie.api.definition.type.Label("Name")
> private java.lang.String name;
> @org.kie.api.definition.type.Label(value = "Message")
> private java.lang.String message;
> public Person() {
> }
> public void setHelloMsg(String arg) {
> this.message = arg;
> }
> public java.lang.String getGender() {
> return this.gender;
> }
> public void setGender(java.lang.String gender) {
> this.gender = gender;
> }
> public java.lang.Boolean getMarried() {
> return this.married;
> }
> public void setMarried(java.lang.Boolean married) {
> this.married = married;
> }
> public java.lang.String getName() {
> return this.name;
> }
> public void setName(java.lang.String name) {
> this.name = name;
> }
> public java.lang.String getMessage() {
> return this.message;
> }
> public void setMessage(java.lang.String message) {
> this.message = message;
> }
> public Person(java.lang.String gender, java.lang.Boolean married,
> java.lang.String name, java.lang.String message) {
> this.gender = gender;
> this.married = married;
> this.name = name;
> this.message = message;
> }
> }
> {code}
> 3. Import the "test_functions.xlsx"
> 4. Convert the "test_functions.xlsx"
> 5. Check the result files
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 3 months
[JBoss JIRA] (DROOLS-4962) [GSS](7.z) A Spreadsheet decision tables does not convert to a DRL file correctly when a Function is being used in the RuleTable constraints
by Toni Rikkola (Jira)
[ https://issues.redhat.com/browse/DROOLS-4962?page=com.atlassian.jira.plug... ]
Toni Rikkola updated DROOLS-4962:
---------------------------------
Description:
1. Create a "test_functions" project in the "MySpace" space.
2. Create a "Person" Data Object
{code:java}
package com.myspace.test_functions;
/**
* This class was automatically generated by the data modeler tool.
*/
public class Person implements java.io.Serializable {
static final long serialVersionUID = 1L;
@org.kie.api.definition.type.Label("Gender")
private java.lang.String gender;
@org.kie.api.definition.type.Label("Is Married")
private java.lang.Boolean married;
@org.kie.api.definition.type.Label("Name")
private java.lang.String name;
@org.kie.api.definition.type.Label(value = "Message")
private java.lang.String message;
public Person() {
}
public void setHelloMsg(String arg) {
this.message = arg;
}
public java.lang.String getGender() {
return this.gender;
}
public void setGender(java.lang.String gender) {
this.gender = gender;
}
public java.lang.Boolean getMarried() {
return this.married;
}
public void setMarried(java.lang.Boolean married) {
this.married = married;
}
public java.lang.String getName() {
return this.name;
}
public void setName(java.lang.String name) {
this.name = name;
}
public java.lang.String getMessage() {
return this.message;
}
public void setMessage(java.lang.String message) {
this.message = message;
}
public Person(java.lang.String gender, java.lang.Boolean married,
java.lang.String name, java.lang.String message) {
this.gender = gender;
this.married = married;
this.name = name;
this.message = message;
}
}
{code}
3. Import the "test_functions.xlsx"
4. Convert the "test_functions.xlsx"
5. Check the result files
> [GSS](7.z) A Spreadsheet decision tables does not convert to a DRL file correctly when a Function is being used in the RuleTable constraints
> --------------------------------------------------------------------------------------------------------------------------------------------
>
> Key: DROOLS-4962
> URL: https://issues.redhat.com/browse/DROOLS-4962
> Project: Drools
> Issue Type: Bug
> Components: XLS Decision Table Editor
> Reporter: Toni Rikkola
> Assignee: Toni Rikkola
> Priority: Major
>
> 1. Create a "test_functions" project in the "MySpace" space.
> 2. Create a "Person" Data Object
> {code:java}
> package com.myspace.test_functions;
> /**
> * This class was automatically generated by the data modeler tool.
> */
> public class Person implements java.io.Serializable {
> static final long serialVersionUID = 1L;
> @org.kie.api.definition.type.Label("Gender")
> private java.lang.String gender;
> @org.kie.api.definition.type.Label("Is Married")
> private java.lang.Boolean married;
> @org.kie.api.definition.type.Label("Name")
> private java.lang.String name;
> @org.kie.api.definition.type.Label(value = "Message")
> private java.lang.String message;
> public Person() {
> }
> public void setHelloMsg(String arg) {
> this.message = arg;
> }
> public java.lang.String getGender() {
> return this.gender;
> }
> public void setGender(java.lang.String gender) {
> this.gender = gender;
> }
> public java.lang.Boolean getMarried() {
> return this.married;
> }
> public void setMarried(java.lang.Boolean married) {
> this.married = married;
> }
> public java.lang.String getName() {
> return this.name;
> }
> public void setName(java.lang.String name) {
> this.name = name;
> }
> public java.lang.String getMessage() {
> return this.message;
> }
> public void setMessage(java.lang.String message) {
> this.message = message;
> }
> public Person(java.lang.String gender, java.lang.Boolean married,
> java.lang.String name, java.lang.String message) {
> this.gender = gender;
> this.married = married;
> this.name = name;
> this.message = message;
> }
> }
> {code}
> 3. Import the "test_functions.xlsx"
> 4. Convert the "test_functions.xlsx"
> 5. Check the result files
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 3 months
[JBoss JIRA] (DROOLS-4961) User / Role Permissions on package level
by Nikos Tsekouras (Jira)
Nikos Tsekouras created DROOLS-4961:
---------------------------------------
Summary: User / Role Permissions on package level
Key: DROOLS-4961
URL: https://issues.redhat.com/browse/DROOLS-4961
Project: Drools
Issue Type: Feature Request
Affects Versions: 7.31.0.Final
Reporter: Nikos Tsekouras
Assignee: Mario Fusco
It will be amazingly helpful to have the ability to minimize the access / permissions of a user / group on package level.
Within a project you can define several packages - for different purposes - and you need each team to be able to work on / view a specific package.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 3 months
[JBoss JIRA] (DROOLS-4960) Reference a data object from one project to another one.
by Nikos Tsekouras (Jira)
Nikos Tsekouras created DROOLS-4960:
---------------------------------------
Summary: Reference a data object from one project to another one.
Key: DROOLS-4960
URL: https://issues.redhat.com/browse/DROOLS-4960
Project: Drools
Issue Type: Feature Request
Affects Versions: 7.31.0.Final
Reporter: Nikos Tsekouras
Assignee: Mario Fusco
Currently, nothing can be referenced from one project to another one.
Using a common area to create the Data Objects etc. and reference them on several projects will be very helpful.
Java-wise is like we are creating two projects and we reference the first one in the second one, in order to use some classes in our code.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 3 months
[JBoss JIRA] (DROOLS-4959) Package name does not changes on copying of an existing package
by Nikos Tsekouras (Jira)
Nikos Tsekouras created DROOLS-4959:
---------------------------------------
Summary: Package name does not changes on copying of an existing package
Key: DROOLS-4959
URL: https://issues.redhat.com/browse/DROOLS-4959
Project: Drools
Issue Type: Bug
Affects Versions: 7.31.0.Final
Reporter: Nikos Tsekouras
Assignee: Mario Fusco
After copying a package to a new one, all copied resources will remain referencing the existing one.
This becomes a bigger issue once you use guided rules, which their source cannot be edited.
Due to that, duplication alerts will be raised.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 3 months