24. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/5/2017 12:06:34 PM Central 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.

24.1 Files compared

# Location File Last Modified
1 IV-eHMP_CIF.zip\IMAG_Source\VISA\Java\AxWebApp\main\src\java\gov\va\med\imaging\ax\webservices\rest\types LuckyType.java Mon Dec 4 21:35:30 2017 UTC
2 IV-eHMP_CIF.zip\IMAG_Source\VISA\Java\AxWebApp\main\src\java\gov\va\med\imaging\ax\webservices\rest\types LuckyType.java Mon Dec 4 21:57:05 2017 UTC

24.2 Comparison summary

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

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

24.4 Active regular expressions

No regular expressions were active.

24.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.i maging.ax. webservice s.rest.typ es;
  5  
  6   // import  gov.va.med .imaging.e xchange.bu siness.Com parableUti l;
  7   // import  java.io.Se rializable ;
  8  
  9   import jav ax.xml.bin d.annotati on.XmlRoot Element;
  10  
  11  
  12   /**
  13    * @author   DNS  TITTOC
  14    *
  15    * This is  a test
  16    */
  17   @XmlRootEl ement (nam e="Lucky")
  18   public cla ss LuckyTy pe
  19   {
  20   //      pr ivate stat ic final l ong serial VersionUID  = -402941 6178345334 605L;
  21   //      pr ivate fina l static L ogger logg er = LogMa nager.getL ogger(Inst ance.class );
  22                
  23           pr otected St ring word;  // defaul t is ""
  24       protec ted Intege r number;  // default  is 0
  25           pr otected St ring messa ge; // def ault is ""
  26           
  27           pu blic Lucky Type()
  28           {
  29                    word  = message  = "";
  30                    numb er=0;
  31           }
  32  
  33       public  LuckyType  (String w ord, Integ er number,  String me sg) 
  34       {
  35           th is.setNumb er(number) ;
  36           th is.setWord (word);
  37           th is.setMess age(mesg);
  38       }
  39  
  40  
  41       public  Integer g etNumber()  {
  42                    retu rn this.nu mber;
  43           }
  44  
  45           pu blic void  setNumber( Integer nu mber) {
  46                    this .number =  number;
  47           }
  48  
  49       public  String ge tWord() {
  50           re turn this. word;
  51       }
  52  
  53       public  void setW ord(String  word) {
  54           th is.word =  word;
  55       }
  56  
  57        publi c String g etMessage( ) {
  58           re turn this. message;
  59       }
  60  
  61        publi c void set Message(St ring messa ge) {
  62           th is.message  = message ;
  63       }
  64           
  65   }