Hello,
I am working on a UIMA FlowController.
I would like to guide a CAS through one or another AE depending on the
result of a first AE.
I think I have to write something like that:
//running first AE
return SimpleStep(aeKey1);
//testing my condition
If (result==”ok”){ return new SimpleStep(aeKey2)}
Else { return new SimpleStep(aeKey3)}
//closing flow
return FinalStep();
The trouble is that I can’t find out how to get the aeKey of a
particular AE...Is it simply the key name given in the AAE descriptor
where we join our own defined flow?
Thank you for your help.
Sophie
|