287. EPMO Open Source Coordination Office Redaction File Detail Report

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

287.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\model\lookup ModelPropertiesApplicationType.java Fri Dec 7 17:36:36 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\model\lookup ModelPropertiesApplicationType.java Wed Dec 12 22:26:42 2018 UTC

287.2 Comparison summary

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

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

287.4 Active regular expressions

No regular expressions were active.

287.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2006 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4  
  5   package go v.va.med.f w.model.lo okup;
  6  
  7   /**
  8    * Well kn own applic ations of  the Model  Properties  Service.
  9    * 
  10    * Created  Sep 6, 20 06 2:24:12  PM
  11    * 
  12    * DNS
  13    */
  14   public cla ss ModelPr opertiesAp plicationT ype extend s Abstract SimpleLook up {
  15  
  16           /* *
  17            *  serialVer sionUID lo ng
  18            * /
  19           pr ivate stat ic final l ong serial VersionUID  = 2691206 0714362410 22L;
  20  
  21           /* *
  22            *  IDENTITY  is used fo r pure equ ality/hash Code imple mentations  and typic ally
  23            *  use ALL o bject prop erties inc luding inf rastructur e properti es (with
  24            *  expection  to circul ar referen ces)
  25            * /
  26           pu blic stati c final Mo delPropert iesApplica tionType I DENTITY =  new ModelP ropertiesA pplication Type(
  27                             "ident ity");
  28  
  29           /* *
  30            *  COPY is u sed to ide ntify prop erties tha t should b e copied o nto a like
  31            *  target ob ject
  32            * /
  33           pu blic stati c final Mo delPropert iesApplica tionType C OPY = new  ModelPrope rtiesAppli cationType (
  34                             "copy" );
  35  
  36           /* *
  37            *  MATCH_DOM AIN_VALUES  is used t o determin e if two l ike object s represen t
  38            *  the same  domain obj ect with r espect to  all the co nfigured d omain
  39            *  propertie s.
  40            *  
  41            *  <p>
  42            *  For examp le, when m atching an  Address o bject, thi s will inc lude the t ype
  43            *  (eg, Perm anent, Tem porary), a ddress, ci ty, state,  and zip.  Assume the se
  44            *  are all t he domain  properties .
  45            *  
  46            *  <p>
  47            *  This diff ers from I DENTITY in  that infr astructure  propertie s are NOT
  48            *  accounted  for (eg,  identifier , lastUpda tedBy, cre atedDate,  etc).
  49            * /
  50           pu blic stati c final Mo delPropert iesApplica tionType M ATCH_DOMAI N_VALUES =  new Model Properties Applicatio nType(
  51                             "match DomainValu es");
  52  
  53           /* *
  54            *  MATCH_DOM AIN_CONCEP T is used  to determi ne if two  like objec ts represe nt
  55            *  the same  domain con cept with  respect to  all the c onfigured  business
  56            *  propertie s. Typical ly this is  implement ed as a pa rtial subs et of
  57            *  configure d properti es for MAT CH_DOMAIN_ VALUES and  allows fo r quick
  58            *  picking o f a domain  concept m atch in a  collection  of other  like objec ts.
  59            *  
  60            *  <p>
  61            *  For examp le, when m atching an  Address o bject, thi s will onl y include  the
  62            *  type (eg,  Permanent , Temporar y).
  63            *  
  64            *  <p>
  65            *  This diff ers from M ATCH_DOMAI N_VALUES i n that not  all domai n properti es
  66            *  should be  inspected .
  67            * /
  68           pu blic stati c final Mo delPropert iesApplica tionType M ATCH_DOMAI N_CONCEPT  = new Mode lPropertie sApplicati onType(
  69                             "match DomainConc ept");
  70  
  71           pr ivate Mode lPropertie sApplicati onType(Str ing code)  {
  72                    supe r(code);
  73           }
  74   }