768. EPMO Open Source Coordination Office Redaction File Detail Report

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

768.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 ProblemNote.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 ProblemNote.java Mon Oct 2 19:55:39 2017 UTC

768.2 Comparison summary

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

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

768.4 Active regular expressions

No regular expressions were active.

768.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.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  problemNo te complex  type.
  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="probl emNote">
  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="n oteDate" t ype="{http ://www.w3. org/2001/X MLSchema}d ateTime" m inOccurs=" 0"/>
  22    *          &lt;eleme nt name="n oteEntered By" type=" {http://ww w.w3.org/2 001/XMLSch ema}string " minOccur s="0"/>
  23    *          &lt;eleme nt name="n oteText" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="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 = "pro blemNote",  namespace  = "http:/ /webservic e.vds. URL         /", propOr der = {
  34       "noteD ate",
  35       "noteE nteredBy",
  36       "noteT ext"
  37   })
  38   public cla ss Problem Note
  39       extend s DataBean
  40   {
  41  
  42       @XmlSc hemaType(n ame = "dat eTime")
  43       protec ted XMLGre gorianCale ndar noteD ate;
  44       protec ted String  noteEnter edBy;
  45       protec ted String  noteText;
  46  
  47       /**
  48        * Get s the valu e of the n oteDate pr operty.
  49        * 
  50        * @re turn
  51        *      possible  object is
  52        *      {@link XM LGregorian Calendar }
  53        *      
  54        */
  55       public  XMLGregor ianCalenda r getNoteD ate() {
  56           re turn noteD ate;
  57       }
  58  
  59       /**
  60        * Set s the valu e of the n oteDate pr operty.
  61        * 
  62        * @pa ram value
  63        *      allowed o bject is
  64        *      {@link XM LGregorian Calendar }
  65        *      
  66        */
  67       public  void setN oteDate(XM LGregorian Calendar v alue) {
  68           th is.noteDat e = value;
  69       }
  70  
  71       /**
  72        * Get s the valu e of the n oteEntered By propert y.
  73        * 
  74        * @re turn
  75        *      possible  object is
  76        *      {@link St ring }
  77        *      
  78        */
  79       public  String ge tNoteEnter edBy() {
  80           re turn noteE nteredBy;
  81       }
  82  
  83       /**
  84        * Set s the valu e of the n oteEntered By propert y.
  85        * 
  86        * @pa ram value
  87        *      allowed o bject is
  88        *      {@link St ring }
  89        *      
  90        */
  91       public  void setN oteEntered By(String  value) {
  92           th is.noteEnt eredBy = v alue;
  93       }
  94  
  95       /**
  96        * Get s the valu e of the n oteText pr operty.
  97        * 
  98        * @re turn
  99        *      possible  object is
  100        *      {@link St ring }
  101        *      
  102        */
  103       public  String ge tNoteText( ) {
  104           re turn noteT ext;
  105       }
  106  
  107       /**
  108        * Set s the valu e of the n oteText pr operty.
  109        * 
  110        * @pa ram value
  111        *      allowed o bject is
  112        *      {@link St ring }
  113        *      
  114        */
  115       public  void setN oteText(St ring value ) {
  116           th is.noteTex t = value;
  117       }
  118  
  119   }