318. EPMO Open Source Coordination Office Redaction File Detail Report

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

318.1 Files compared

# Location File Last Modified
1 IV-eHMP_CIF.zip\IMAG_Source\VISA\Java\MIXCommon\main\src\java\gov\va\med\imaging\mix\webservices\rest\types\v1 LuckyType.java Mon Dec 4 21:35:34 2017 UTC
2 IV-eHMP_CIF.zip\IMAG_Source\VISA\Java\MIXCommon\main\src\java\gov\va\med\imaging\mix\webservices\rest\types\v1 LuckyType.java Mon Dec 4 22:04:00 2017 UTC

318.2 Comparison summary

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

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

318.4 Active regular expressions

No regular expressions were active.

318.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.i maging.mix .webservic es.rest.ty pes.v1;
  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   // import  org.apache .logging.l og4j.LogMa nager;
  12   import org .apache.lo gging.log4 j.Logger;
  13  
  14   /**
  15    * @author   DNS  TITTOC
  16    *
  17    * This is  a test
  18    */
  19   @XmlRootEl ement (nam e="Lucky")
  20   public cla ss LuckyTy pe
  21   {
  22   //      pr ivate stat ic final l ong serial VersionUID  = -402941 6178345334 605L;
  23   //      pr ivate fina l static L ogger logg er = LogMa nager.getL ogger(Inst ance.class );
  24                
  25           pr otected St ring word;  // defaul t is ""
  26       protec ted Intege r number;  // default  is 0
  27           pr otected St ring messa ge; // def ault is ""
  28           
  29           pu blic Lucky Type()
  30           {
  31                    word  = message  = "";
  32                    numb er=0;
  33           }
  34  
  35       public  LuckyType  (String w ord, Integ er number,  String me sg) 
  36       {
  37           th is.setNumb er(number) ;
  38           th is.setWord (word);
  39           th is.setMess age(mesg);
  40       }
  41  
  42  
  43       public  Integer g etNumber()  {
  44                    retu rn this.nu mber;
  45           }
  46  
  47           pu blic void  setNumber( Integer nu mber) {
  48                    this .number =  number;
  49           }
  50  
  51       public  String ge tWord() {
  52           re turn this. word;
  53       }
  54  
  55       public  void setW ord(String  word) {
  56           th is.word =  word;
  57       }
  58  
  59        publi c String g etMessage( ) {
  60           re turn this. message;
  61       }
  62  
  63        publi c void set Message(St ring messa ge) {
  64           th is.message  = message ;
  65       }
  66           
  67   }