793. EPMO Open Source Coordination Office Redaction File Detail Report

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

793.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 SiteStatusV4.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 SiteStatusV4.java Mon Oct 2 19:55:52 2017 UTC

793.2 Comparison summary

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

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

793.4 Active regular expressions

No regular expressions were active.

793.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  siteStatu sV4 comple x type.
  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="siteS tatusV4">
  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="e xpectedCou nt" type=" {http://ww w.w3.org/2 001/XMLSch ema}int"/>
  20    *           &lt;elemen t name="pa rtner" typ e="{http:/ /webservic e.bhie. URL         /}partnerV 4" minOccu rs="0"/>
  21    *          &lt;eleme nt name="p artnerStat us" type=" {http://ww w.w3.org/2 001/XMLSch ema}string " minOccur s="0"/>
  22    *          &lt;eleme nt name="r eceivedCou nt" type=" {http://ww w.w3.org/2 001/XMLSch ema}int"/>
  23    *       & lt;/sequen ce>
  24    *     &lt ;/restrict ion>
  25    *   &lt;/ complexCon tent>
  26    * &lt;/co mplexType>
  27    * </pre>
  28    * 
  29    * 
  30    */
  31   @XmlAccess orType(Xml AccessType .FIELD)
  32   @XmlType(n ame = "sit eStatusV4" , namespac e = "http: //webservi ce.bhie. URL         /", propOr der = {
  33       "expec tedCount",
  34       "partn er",
  35       "partn erStatus",
  36       "recei vedCount"
  37   })
  38   public cla ss SiteSta tusV4 {
  39  
  40       protec ted int ex pectedCoun t;
  41       protec ted Partne rV4 partne r;
  42       protec ted String  partnerSt atus;
  43       protec ted int re ceivedCoun t;
  44  
  45       /**
  46        * Get s the valu e of the e xpectedCou nt propert y.
  47        * 
  48        */
  49       public  int getEx pectedCoun t() {
  50           re turn expec tedCount;
  51       }
  52  
  53       /**
  54        * Set s the valu e of the e xpectedCou nt propert y.
  55        * 
  56        */
  57       public  void setE xpectedCou nt(int val ue) {
  58           th is.expecte dCount = v alue;
  59       }
  60  
  61       /**
  62        * Get s the valu e of the p artner pro perty.
  63        * 
  64        * @re turn
  65        *      possible  object is
  66        *      {@link Pa rtnerV4 }
  67        *      
  68        */
  69       public  PartnerV4  getPartne r() {
  70           re turn partn er;
  71       }
  72  
  73       /**
  74        * Set s the valu e of the p artner pro perty.
  75        * 
  76        * @pa ram value
  77        *      allowed o bject is
  78        *      {@link Pa rtnerV4 }
  79        *      
  80        */
  81       public  void setP artner(Par tnerV4 val ue) {
  82           th is.partner  = value;
  83       }
  84  
  85       /**
  86        * Get s the valu e of the p artnerStat us propert y.
  87        * 
  88        * @re turn
  89        *      possible  object is
  90        *      {@link St ring }
  91        *      
  92        */
  93       public  String ge tPartnerSt atus() {
  94           re turn partn erStatus;
  95       }
  96  
  97       /**
  98        * Set s the valu e of the p artnerStat us propert y.
  99        * 
  100        * @pa ram value
  101        *      allowed o bject is
  102        *      {@link St ring }
  103        *      
  104        */
  105       public  void setP artnerStat us(String  value) {
  106           th is.partner Status = v alue;
  107       }
  108  
  109       /**
  110        * Get s the valu e of the r eceivedCou nt propert y.
  111        * 
  112        */
  113       public  int getRe ceivedCoun t() {
  114           re turn recei vedCount;
  115       }
  116  
  117       /**
  118        * Set s the valu e of the r eceivedCou nt propert y.
  119        * 
  120        */
  121       public  void setR eceivedCou nt(int val ue) {
  122           th is.receive dCount = v alue;
  123       }
  124  
  125   }