I am trying to use action nodes with a ruleflow with a dialect of java. Here
is the text from the node:
dialog = new CIDDialog(accountSummaryViewShell,0);
dialog.getOverrideButton().setEnabled(true);
dialog.open();
I get an error during compilation that states:
com/dfs/dc/servicing/cms/cid/verification/Process_com_dfs_dc_servicing_cms_cid_verification_0.java
(38:1890) : dialog cannot be resolved
which is not expected if its to be valid java since I don't declare a type
for dialog
I then tried to specify a type as follows:
CIDDialog dialog = new CIDDialog(accountSummaryViewShell,0);
dialog.getOverrideButton().setEnabled(true);
dialog.open();
which results in an error when I try and build the project:
Process 'CIDVerificationFlow' [CIDVerificationFlow]: Action node
'Display_CID_Verification_Override_Enabled' [21] has invalid action: unknown
class or illegal statement: Unknown Drools Error
Any suggestions?
Thanks
--
View this message in context:
http://www.nabble.com/RuleFlow-Action-Nodes-tp20876073p20876073.html
Sent from the drools - user mailing list archive at
Nabble.com.