750. EPMO Open Source Coordination Office Redaction File Detail Report

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

750.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 NoteImage.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 NoteImage.java Mon Oct 2 19:55:27 2017 UTC

750.2 Comparison summary

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

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

750.4 Active regular expressions

No regular expressions were active.

750.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  noteImage  complex t ype.
  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="noteI mage">
  16    *   &lt;c omplexCont ent>
  17    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
  18    *       & lt;sequenc e>
  19    *          &lt;eleme nt name="c ontentDisp osition" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" />
  20    *          &lt;eleme nt name="c ontentType " type="{h ttp://www. w3.org/200 1/XMLSchem a}string"  minOccurs= "0"/>
  21    *          &lt;eleme nt name="n oteBytes"  type="{htt p://www.w3 .org/2001/ XMLSchema} base64Bina ry" minOcc urs="0"/>
  22    *       & lt;/sequen ce>
  23    *     &lt ;/restrict ion>
  24    *   &lt;/ complexCon tent>
  25    * &lt;/co mplexType>
  26    * </pre>
  27    * 
  28    * 
  29    */
  30   @XmlAccess orType(Xml AccessType .FIELD)
  31   @XmlType(n ame = "not eImage", n amespace =  "http://w ebservice. bhie. URL         /", propOr der = {
  32       "conte ntDisposit ion",
  33       "conte ntType",
  34       "noteB ytes"
  35   })
  36   public cla ss NoteIma ge {
  37  
  38       protec ted String  contentDi sposition;
  39       protec ted String  contentTy pe;
  40       protec ted byte[]  noteBytes ;
  41  
  42       /**
  43        * Get s the valu e of the c ontentDisp osition pr operty.
  44        * 
  45        * @re turn
  46        *      possible  object is
  47        *      {@link St ring }
  48        *      
  49        */
  50       public  String ge tContentDi sposition( ) {
  51           re turn conte ntDisposit ion;
  52       }
  53  
  54       /**
  55        * Set s the valu e of the c ontentDisp osition pr operty.
  56        * 
  57        * @pa ram value
  58        *      allowed o bject is
  59        *      {@link St ring }
  60        *      
  61        */
  62       public  void setC ontentDisp osition(St ring value ) {
  63           th is.content Dispositio n = value;
  64       }
  65  
  66       /**
  67        * Get s the valu e of the c ontentType  property.
  68        * 
  69        * @re turn
  70        *      possible  object is
  71        *      {@link St ring }
  72        *      
  73        */
  74       public  String ge tContentTy pe() {
  75           re turn conte ntType;
  76       }
  77  
  78       /**
  79        * Set s the valu e of the c ontentType  property.
  80        * 
  81        * @pa ram value
  82        *      allowed o bject is
  83        *      {@link St ring }
  84        *      
  85        */
  86       public  void setC ontentType (String va lue) {
  87           th is.content Type = val ue;
  88       }
  89  
  90       /**
  91        * Get s the valu e of the n oteBytes p roperty.
  92        * 
  93        * @re turn
  94        *      possible  object is
  95        *      byte[]
  96        */
  97       public  byte[] ge tNoteBytes () {
  98           re turn noteB ytes;
  99       }
  100  
  101       /**
  102        * Set s the valu e of the n oteBytes p roperty.
  103        * 
  104        * @pa ram value
  105        *      allowed o bject is
  106        *      byte[]
  107        */
  108       public  void setN oteBytes(b yte[] valu e) {
  109           th is.noteByt es = value ;
  110       }
  111  
  112   }