256. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:15 AM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

256.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\rule RuleSession.java Wed May 29 15:26:14 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\rule RuleSession.java Mon Jun 10 19:27:47 2019 UTC

256.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 128
Changed 1 2
Inserted 0 0
Removed 0 0

256.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

256.4 Active regular expressions

No regular expressions were active.

256.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2004 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.f w.rule;
  5  
  6   // Java cl asses
  7   import jav a.io.Seria lizable;
  8  
  9   // Library  classes
  10  
  11   // Framewo rk classes
  12  
  13   // EDB cla sses
  14  
  15   /**
  16    * Project : Framewor k
  17    * 
  18    * @author   DN S
  19    * @versio n 1.0
  20    */
  21   public int erface Rul eSession e xtends Ser ializable  {
  22  
  23           /* *
  24            *  Returns t rue to con nect to a  rule engin e to debug  a fule. O therwise,
  25            *  return fa lse. A con crete clas s returns  a default  value of f alse.
  26            *  
  27            *  @return T rue if con nected to  a rule eng ine to deb ug false o therwise
  28            * /
  29           pu blic boole an isDebug Enabled();
  30  
  31           /* *
  32            *  Returns a  state obj ect encaps ulates inf ormation a bout the c urrent sta te
  33            *  of a rule
  34            *  
  35            *  @return R uleState A  rule's st ate
  36            * /
  37           pu blic RuleS tate getSt ate();
  38  
  39           /* *
  40            *  Sets a st ate object  encapsula tes inform ation abou t the curr ent state  of a
  41            *  rule
  42            *  
  43            *  @param st ate
  44            *              A rule's  state
  45            * /
  46           pu blic void  setState(R uleState s tate);
  47  
  48           /* *
  49            *  Check if  a next rul e in a rul e flow sho uld be exe cuted in c ase of an
  50            *  exception  or error
  51            *  
  52            *  @return T rue to con tinue to a  next rule . False ot herwise
  53            * /
  54           pu blic boole an isConti nueOnFail( );
  55  
  56           /* *
  57            *  Sets a fl ag to indi cate wheth er a next  rule in a  rule flow  should be
  58            *  executed  in case of  error or  exception
  59            *  
  60            *  @param fl ag
  61            *              A flag t o indicate  whether t o continue  execution
  62            * /
  63           pu blic void  setContinu eOnFail(bo olean flag );
  64  
  65   }