365. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:30 AM Eastern Standard 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.

365.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\rule SimpleRuleData.java Fri Dec 7 17:36:18 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\rule SimpleRuleData.java Wed Dec 12 19:52:48 2018 UTC

365.2 Comparison summary

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

365.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

365.4 Active regular expressions

No regular expressions were active.

365.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2008 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.f w.rule;
  5  
  6   import jav a.io.Seria lizable;
  7   import jav a.util.Arr ayList;
  8   import jav a.util.Lis t;
  9  
  10   import gov .va.med.fw .security. UserPrinci pal;
  11  
  12   /**
  13    * CISS -  ciss_frame work TODO:  add conte nt here
  14    * 
  15    * Jan 12,  2009
  16    * 
  17    * @author          DN S
  18    */
  19   public cla ss SimpleR uleData im plements S erializabl e {
  20           /* *
  21            *  
  22            * /
  23           pr ivate stat ic final l ong serial VersionUID  = 0L;
  24  
  25           pr ivate User Principal  userPrinci pal;
  26  
  27           //  The inten ded action
  28           pr ivate Stri ng action;
  29  
  30           pr ivate List <String> e rrors = ne w ArrayLis t<String>( );
  31  
  32           pr ivate List <String> w arnings =  new ArrayL ist<String >();
  33  
  34           pr ivate List <Object> o utput = ne w ArrayLis t<Object>( );
  35  
  36           pu blic Strin g getActio n() {
  37                    retu rn action;
  38           }
  39  
  40           pu blic void  setAction( String act ion) {
  41                    this .action =  action;
  42           }
  43  
  44           /* *
  45            *  @return t he errors
  46            * /
  47           pu blic List< String> ge tErrors()  {
  48                    retu rn errors;
  49           }
  50  
  51           /* *
  52            *  @param er rors
  53            *              the erro rs to set
  54            * /
  55           pu blic void  setErrors( List<Strin g> errors)  {
  56                    this .errors =  errors;
  57           }
  58  
  59           /* *
  60            *  @return t he output
  61            * /
  62           pu blic List< Object> ge tOutput()  {
  63                    retu rn output;
  64           }
  65  
  66           /* *
  67            *  @param ou tput
  68            *              the outp ut to set
  69            * /
  70           pu blic void  setOutput( List<Objec t> output)  {
  71                    this .output =  output;
  72           }
  73  
  74           /* *
  75            *  @return t he userPri ncipal
  76            * /
  77           pu blic UserP rincipal g etUserPrin cipal() {
  78                    retu rn userPri ncipal;
  79           }
  80  
  81           /* *
  82            *  @param us erPrincipa l
  83            *              the user Principal  to set
  84            * /
  85           pu blic void  setUserPri ncipal(Use rPrincipal  userPrinc ipal) {
  86                    this .userPrinc ipal = use rPrincipal ;
  87           }
  88  
  89           /* *
  90            *  @return t he warning s
  91            * /
  92           pu blic List< String> ge tWarnings( ) {
  93                    retu rn warning s;
  94           }
  95  
  96           /* *
  97            *  @param wa rnings
  98            *              the warn ings to se t
  99            * /
  100           pu blic void  setWarning s(List<Str ing> warni ngs) {
  101                    this .warnings  = warnings ;
  102           }
  103  
  104   }