22457. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/2/2019 9:48:59 PM 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.

22457.1 Files compared

# Location File Last Modified
1 JLV_JLV 2_7_2_0_0.zip\JLV_Src\jMeadows\src\main\java\gov\va\med\jmeadows\dao\beans ExternalID.java Wed Mar 20 21:43:44 2019 UTC
2 JLV_JLV 2_7_2_0_0.zip\JLV_Src\jMeadows\src\main\java\gov\va\med\jmeadows\dao\beans ExternalID.java Tue Apr 2 13:35:48 2019 UTC

22457.2 Comparison summary

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

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

22457.4 Active regular expressions

No regular expressions were active.

22457.5 Comparison detail

  1   package go v.va.med.j meadows.da o.beans;
  2  
  3   /**
  4    * Created  with Inte lliJ IDEA.
  5    * User:  DNS
  6    * Date: 6 /26/14
  7    * Time: 2 :32 PM
  8    * To chan ge this te mplate use  File | Se ttings | F ile Templa tes.
  9    */
  10   public cla ss Externa lID {
  11   //    ID^T YPE^SOURCE ^ISSUER^ST ATUS
  12  
  13       privat e String i d;
  14       privat e String t ype;
  15       privat e String s ource;
  16       privat e String i ssuer;
  17       privat e String s ourceName;
  18  
  19       public  ExternalI D() {
  20           su per();
  21       }
  22  
  23       public  ExternalI D(String _ id, String  _type, St ring _sour ce, String  _issuer)  {
  24           su per();
  25           th is.id = _i d;
  26           th is.type =  _type;
  27           th is.source  = _source;
  28           th is.issuer  = _issuer;
  29       }
  30  
  31       public  String ge tId() {
  32           re turn id;
  33       }
  34  
  35       public  void setI d(String i d) {
  36           th is.id = id ;
  37       }
  38  
  39       public  String ge tType() {
  40           re turn type;
  41       }
  42  
  43       public  void setT ype(String  type) {
  44           th is.type =  type;
  45       }
  46  
  47       public  String ge tSource()  {
  48           re turn sourc e;
  49       }
  50  
  51       public  void setS ource(Stri ng source)  {
  52           th is.source  = source;
  53       }
  54  
  55       public  String ge tIssuer()  {
  56           re turn issue r;
  57       }
  58  
  59       public  void setI ssuer(Stri ng issuer)  {
  60           th is.issuer  = issuer;
  61       }
  62  
  63       public  String ge tSourceNam e() {
  64           re turn sourc eName;
  65       }
  66  
  67       public  void setS ourceName( String sou rceName) {
  68           th is.sourceN ame = sour ceName;
  69       }
  70   }