37599. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/17/2019 10:54:36 AM 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.

37599.1 Files compared

# Location File Last Modified
1 v1_iter_1_VIP_Build_4_Dec_2018_CG.zip\v1_iter_1_VIP_Build_4\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\med\via\service SignatureStatusTO.java Wed Jan 16 16:06:34 2019 UTC
2 v1_iter_1_VIP_Build_4_Dec_2018_CG.zip\v1_iter_1_VIP_Build_4\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\med\via\service SignatureStatusTO.java Wed Jan 16 20:18:09 2019 UTC

37599.2 Comparison summary

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

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

37599.4 Active regular expressions

No regular expressions were active.

37599.5 Comparison detail

  1  
  2   package go v.va.med.v ia.service ;
  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  signature StatusTO 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="signa tureStatus TO"&gt;
  16    *   &lt;c omplexCont ent&gt;
  17    *       &lt;extens ion base=" {http:// DNS          . URL         /}abstract TO"&gt;
  18    *       & lt;sequenc e&gt;
  19    *          &lt;eleme nt name="n ame" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0" for m="unquali fied"/&gt;
  20    *          &lt;eleme nt name="v alue" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0" fo rm="unqual ified"/&gt ;
  21    *       & lt;/sequen ce&gt;
  22    *     &lt ;/extensio n&gt;
  23    *   &lt;/ complexCon tent&gt;
  24    * &lt;/co mplexType& gt;
  25    * </pre>
  26    * 
  27    * 
  28    */
  29   @XmlAccess orType(Xml AccessType .FIELD)
  30   @XmlType(n ame = "sig natureStat usTO", pro pOrder = {
  31       "name" ,
  32       "value "
  33   })
  34   public cla ss Signatu reStatusTO
  35       extend s Abstract TO
  36   {
  37  
  38       protec ted String  name;
  39       protec ted String  value;
  40  
  41       /**
  42        * Get s the valu e of the n ame proper ty.
  43        * 
  44        * @re turn
  45        *      possible  object is
  46        *      {@link St ring }
  47        *      
  48        */
  49       public  String ge tName() {
  50           re turn name;
  51       }
  52  
  53       /**
  54        * Set s the valu e of the n ame proper ty.
  55        * 
  56        * @pa ram value
  57        *      allowed o bject is
  58        *      {@link St ring }
  59        *      
  60        */
  61       public  void setN ame(String  value) {
  62           th is.name =  value;
  63       }
  64  
  65       /**
  66        * Get s the valu e of the v alue prope rty.
  67        * 
  68        * @re turn
  69        *      possible  object is
  70        *      {@link St ring }
  71        *      
  72        */
  73       public  String ge tValue() {
  74           re turn value ;
  75       }
  76  
  77       /**
  78        * Set s the valu e of the v alue prope rty.
  79        * 
  80        * @pa ram value
  81        *      allowed o bject is
  82        *      {@link St ring }
  83        *      
  84        */
  85       public  void setV alue(Strin g value) {
  86           th is.value =  value;
  87       }
  88  
  89   }