204. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/3/2017 11:15:29 AM Central 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.

204.1 Files compared

# Location File Last Modified
1 ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\main\java\gov\va\med\jmeadows_2_3_0\webservice Diagnosis.java Tue Dec 15 14:05:18 2015 UTC
2 ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\main\java\gov\va\med\jmeadows_2_3_0\webservice Diagnosis.java Mon Oct 2 19:50:49 2017 UTC

204.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 342
Changed 2 4
Inserted 0 0
Removed 0 0

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

204.4 Active regular expressions

No regular expressions were active.

204.5 Comparison detail

  1  
  2   package go v.va.med.j meadows_2_ 3_0.webser vice;
  3  
  4   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
  5   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
  6   import jav ax.xml.bin d.annotati on.XmlSche maType;
  7   import jav ax.xml.bin d.annotati on.XmlType ;
  8   import jav ax.xml.dat atype.XMLG regorianCa lendar;
  9  
  10  
  11   /**
  12    * <p>Java  class for  diagnosis  complex t ype.
  13    * 
  14    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  15    * 
  16    * <pre>
  17    * &lt;com plexType n ame="diagn osis">
  18    *   &lt;c omplexCont ent>
  19    *       &lt;extens ion base=" {http://we bservice.v ds. URL         /}dataBean ">
  20    *       & lt;sequenc e>
  21    *          &lt;eleme nt name="c ode" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/>
  22    *          &lt;eleme nt name="c odeSystem"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/>
  23    *          &lt;eleme nt name="d ate" type= "{http://w ww.w3.org/ 2001/XMLSc hema}dateT ime" minOc curs="0"/>
  24    *          &lt;eleme nt name="d escription " type="{h ttp://www. w3.org/200 1/XMLSchem a}string"  minOccurs= "0"/>
  25    *          &lt;eleme nt name="s tatus" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/>
  26    *       & lt;/sequen ce>
  27    *     &lt ;/extensio n>
  28    *   &lt;/ complexCon tent>
  29    * &lt;/co mplexType>
  30    * </pre>
  31    * 
  32    * 
  33    */
  34   @XmlAccess orType(Xml AccessType .FIELD)
  35   @XmlType(n ame = "dia gnosis", n amespace =  "http://w ebservice. vds. URL         /", propOr der = {
  36       "code" ,
  37       "codeS ystem",
  38       "date" ,
  39       "descr iption",
  40       "statu s"
  41   })
  42   public cla ss Diagnos is
  43       extend s DataBean
  44   {
  45  
  46       protec ted String  code;
  47       protec ted String  codeSyste m;
  48       @XmlSc hemaType(n ame = "dat eTime")
  49       protec ted XMLGre gorianCale ndar date;
  50       protec ted String  descripti on;
  51       protec ted String  status;
  52  
  53       /**
  54        * Get s the valu e of the c ode proper ty.
  55        * 
  56        * @re turn
  57        *      possible  object is
  58        *      {@link St ring }
  59        *      
  60        */
  61       public  String ge tCode() {
  62           re turn code;
  63       }
  64  
  65       /**
  66        * Set s the valu e of the c ode proper ty.
  67        * 
  68        * @pa ram value
  69        *      allowed o bject is
  70        *      {@link St ring }
  71        *      
  72        */
  73       public  void setC ode(String  value) {
  74           th is.code =  value;
  75       }
  76  
  77       /**
  78        * Get s the valu e of the c odeSystem  property.
  79        * 
  80        * @re turn
  81        *      possible  object is
  82        *      {@link St ring }
  83        *      
  84        */
  85       public  String ge tCodeSyste m() {
  86           re turn codeS ystem;
  87       }
  88  
  89       /**
  90        * Set s the valu e of the c odeSystem  property.
  91        * 
  92        * @pa ram value
  93        *      allowed o bject is
  94        *      {@link St ring }
  95        *      
  96        */
  97       public  void setC odeSystem( String val ue) {
  98           th is.codeSys tem = valu e;
  99       }
  100  
  101       /**
  102        * Get s the valu e of the d ate proper ty.
  103        * 
  104        * @re turn
  105        *      possible  object is
  106        *      {@link XM LGregorian Calendar }
  107        *      
  108        */
  109       public  XMLGregor ianCalenda r getDate( ) {
  110           re turn date;
  111       }
  112  
  113       /**
  114        * Set s the valu e of the d ate proper ty.
  115        * 
  116        * @pa ram value
  117        *      allowed o bject is
  118        *      {@link XM LGregorian Calendar }
  119        *      
  120        */
  121       public  void setD ate(XMLGre gorianCale ndar value ) {
  122           th is.date =  value;
  123       }
  124  
  125       /**
  126        * Get s the valu e of the d escription  property.
  127        * 
  128        * @re turn
  129        *      possible  object is
  130        *      {@link St ring }
  131        *      
  132        */
  133       public  String ge tDescripti on() {
  134           re turn descr iption;
  135       }
  136  
  137       /**
  138        * Set s the valu e of the d escription  property.
  139        * 
  140        * @pa ram value
  141        *      allowed o bject is
  142        *      {@link St ring }
  143        *      
  144        */
  145       public  void setD escription (String va lue) {
  146           th is.descrip tion = val ue;
  147       }
  148  
  149       /**
  150        * Get s the valu e of the s tatus prop erty.
  151        * 
  152        * @re turn
  153        *      possible  object is
  154        *      {@link St ring }
  155        *      
  156        */
  157       public  String ge tStatus()  {
  158           re turn statu s;
  159       }
  160  
  161       /**
  162        * Set s the valu e of the s tatus prop erty.
  163        * 
  164        * @pa ram value
  165        *      allowed o bject is
  166        *      {@link St ring }
  167        *      
  168        */
  169       public  void setS tatus(Stri ng value)  {
  170           th is.status  = value;
  171       }
  172  
  173   }