Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Language Processing Toolkit processes  Saga Library processes text through a pipeline of text processing stages. The typical pipeline consists of the following sets of stages:

...

  • A fully qualified java package and class name.
    • For example:  com.accenture.saga.engine.stages.CaseAnalysisStage
  • A simple stage name without "Stage" at the end
    • When this occurs, the Saga Library will automatically look in the "com.accenture.saga.engine.stages" package for a class with the same name and with "Stage" appended to the end. 
    • For example:  "DictionaryTagger" will automatically look for "com.accenture.saga.engine.stages.DictionaryTaggerStage"
  • Any other class name (without the java package)
    • Will automatically look for the class in the "com.accenture.saga.engine.stages" package

...