609. EPMO Open Source Coordination Office Redaction File Detail Report

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

609.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_3_0_2\webservice EncounterDocument.java Thu Apr 28 21:02:40 2016 UTC
2 ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\main\java\gov\va\med\jmeadows_2_3_3_0_2\webservice EncounterDocument.java Mon Oct 2 19:54:18 2017 UTC

609.2 Comparison summary

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

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

609.4 Active regular expressions

No regular expressions were active.

609.5 Comparison detail

  1  
  2   package go v.va.med.j meadows_2_ 3_3_0_2.we bservice;
  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.XmlType ;
  7  
  8  
  9   /**
  10    * <p>Java  class for  encounter Document c omplex typ e.
  11    * 
  12    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  13    * 
  14    * <pre>
  15    * &lt;com plexType n ame="encou nterDocume nt">
  16    *   &lt;c omplexCont ent>
  17    *       &lt;extens ion base=" {http://we bservice.v ds. URL         /}dataBean ">
  18    *       & lt;sequenc e>
  19    *          &lt;eleme nt name="c ontent" ty pe="{http: //www.w3.o rg/2001/XM LSchema}st ring" minO ccurs="0"/ >
  20    *          &lt;eleme nt name="i d" type="{ http://www .w3.org/20 01/XMLSche ma}string"  minOccurs ="0"/>
  21    *          &lt;eleme nt name="l ocalTitle"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/>
  22    *          &lt;eleme nt name="n ationalTit le" type=" {http://ww w.w3.org/2 001/XMLSch ema}string " minOccur s="0"/>
  23    *          &lt;eleme nt name="v uid" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/>
  24    *       & lt;/sequen ce>
  25    *     &lt ;/extensio n>
  26    *   &lt;/ complexCon tent>
  27    * &lt;/co mplexType>
  28    * </pre>
  29    * 
  30    * 
  31    */
  32   @XmlAccess orType(Xml AccessType .FIELD)
  33   @XmlType(n ame = "enc ounterDocu ment", nam espace = " http://web service.vd s. URL         /", propOr der = {
  34       "conte nt",
  35       "id",
  36       "local Title",
  37       "natio nalTitle",
  38       "vuid"
  39   })
  40   public cla ss Encount erDocument
  41       extend s DataBean
  42   {
  43  
  44       protec ted String  content;
  45       protec ted String  id;
  46       protec ted String  localTitl e;
  47       protec ted String  nationalT itle;
  48       protec ted String  vuid;
  49  
  50       /**
  51        * Get s the valu e of the c ontent pro perty.
  52        * 
  53        * @re turn
  54        *      possible  object is
  55        *      {@link St ring }
  56        *      
  57        */
  58       public  String ge tContent()  {
  59           re turn conte nt;
  60       }
  61  
  62       /**
  63        * Set s the valu e of the c ontent pro perty.
  64        * 
  65        * @pa ram value
  66        *      allowed o bject is
  67        *      {@link St ring }
  68        *      
  69        */
  70       public  void setC ontent(Str ing value)  {
  71           th is.content  = value;
  72       }
  73  
  74       /**
  75        * Get s the valu e of the i d property .
  76        * 
  77        * @re turn
  78        *      possible  object is
  79        *      {@link St ring }
  80        *      
  81        */
  82       public  String ge tId() {
  83           re turn id;
  84       }
  85  
  86       /**
  87        * Set s the valu e of the i d property .
  88        * 
  89        * @pa ram value
  90        *      allowed o bject is
  91        *      {@link St ring }
  92        *      
  93        */
  94       public  void setI d(String v alue) {
  95           th is.id = va lue;
  96       }
  97  
  98       /**
  99        * Get s the valu e of the l ocalTitle  property.
  100        * 
  101        * @re turn
  102        *      possible  object is
  103        *      {@link St ring }
  104        *      
  105        */
  106       public  String ge tLocalTitl e() {
  107           re turn local Title;
  108       }
  109  
  110       /**
  111        * Set s the valu e of the l ocalTitle  property.
  112        * 
  113        * @pa ram value
  114        *      allowed o bject is
  115        *      {@link St ring }
  116        *      
  117        */
  118       public  void setL ocalTitle( String val ue) {
  119           th is.localTi tle = valu e;
  120       }
  121  
  122       /**
  123        * Get s the valu e of the n ationalTit le propert y.
  124        * 
  125        * @re turn
  126        *      possible  object is
  127        *      {@link St ring }
  128        *      
  129        */
  130       public  String ge tNationalT itle() {
  131           re turn natio nalTitle;
  132       }
  133  
  134       /**
  135        * Set s the valu e of the n ationalTit le propert y.
  136        * 
  137        * @pa ram value
  138        *      allowed o bject is
  139        *      {@link St ring }
  140        *      
  141        */
  142       public  void setN ationalTit le(String  value) {
  143           th is.nationa lTitle = v alue;
  144       }
  145  
  146       /**
  147        * Get s the valu e of the v uid proper ty.
  148        * 
  149        * @re turn
  150        *      possible  object is
  151        *      {@link St ring }
  152        *      
  153        */
  154       public  String ge tVuid() {
  155           re turn vuid;
  156       }
  157  
  158       /**
  159        * Set s the valu e of the v uid proper ty.
  160        * 
  161        * @pa ram value
  162        *      allowed o bject is
  163        *      {@link St ring }
  164        *      
  165        */
  166       public  void setV uid(String  value) {
  167           th is.vuid =  value;
  168       }
  169  
  170   }