37282. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/12/2018 3:21:06 PM Eastern 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.

37282.1 Files compared

# Location File Last Modified
1 CareT v1_iter1_build_2.zip\core\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\ee RetrieveIVMCandidatesResponse.java Mon Apr 9 18:52:50 2018 UTC
2 CareT v1_iter1_build_2.zip\core\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\ee RetrieveIVMCandidatesResponse.java Wed Apr 11 18:23:43 2018 UTC

37282.2 Comparison summary

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

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

37282.4 Active regular expressions

No regular expressions were active.

37282.5 Comparison detail

  1  
  2   package go v.va.ee;
  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.XmlElem ent;
  7   import jav ax.xml.bin d.annotati on.XmlRoot Element;
  8   import jav ax.xml.bin d.annotati on.XmlSche maType;
  9   import jav ax.xml.bin d.annotati on.XmlType ;
  10   import jav ax.xml.dat atype.XMLG regorianCa lendar;
  11  
  12  
  13   /**
  14    * <p>Java  class for  anonymous  complex t ype.
  15    * 
  16    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  17    * 
  18    * <pre>
  19    * &lt;com plexType>
  20    *   &lt;c omplexCont ent>
  21    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
  22    *       & lt;sequenc e>
  23    *           &lt;elemen t name="ca ndidates"  type="{htt p:// DNS . URL         /schemas}i vmCandidat eCollectio n" minOccu rs="0"/>
  24    *          &lt;eleme nt name="n umberOfCan didates" t ype="{http ://www.w3. org/2001/X MLSchema}i nt"/>
  25    *          &lt;eleme nt name="e esVersion  " type="{h ttp://www. w3.org/200 1/XMLSchem a}string"/ >
  26    *          &lt;eleme nt name="i nvocationD ate " type ="{http:// www.w3.org /2001/XMLS chema}date "/>
  27    *       & lt;/sequen ce>
  28    *     &lt ;/restrict ion>
  29    *   &lt;/ complexCon tent>
  30    * &lt;/co mplexType>
  31    * </pre>
  32    * 
  33    * 
  34    */
  35   @XmlAccess orType(Xml AccessType .FIELD)
  36   @XmlType(n ame = "",  propOrder  = {
  37       "candi dates",
  38       "numbe rOfCandida tes",
  39       "eesVe rsion0020" ,
  40       "invoc ationDate0 020"
  41   })
  42   @XmlRootEl ement(name  = "retrie veIVMCandi datesRespo nse")
  43   public cla ss Retriev eIVMCandid atesRespon se {
  44  
  45       protec ted IvmCan didateColl ection can didates;
  46       protec ted int nu mberOfCand idates;
  47       @XmlEl ement(name  = "eesVer sion ", re quired = t rue)
  48       protec ted String  eesVersio n0020;
  49       @XmlEl ement(name  = "invoca tionDate " , required  = true)
  50       @XmlSc hemaType(n ame = "dat e")
  51       protec ted XMLGre gorianCale ndar invoc ationDate0 020;
  52  
  53       /**
  54        * Get s the valu e of the c andidates  property.
  55        * 
  56        * @re turn
  57        *      possible  object is
  58        *      {@link Iv mCandidate Collection  }
  59        *      
  60        */
  61       public  IvmCandid ateCollect ion getCan didates()  {
  62           re turn candi dates;
  63       }
  64  
  65       /**
  66        * Set s the valu e of the c andidates  property.
  67        * 
  68        * @pa ram value
  69        *      allowed o bject is
  70        *      {@link Iv mCandidate Collection  }
  71        *      
  72        */
  73       public  void setC andidates( IvmCandida teCollecti on value)  {
  74           th is.candida tes = valu e;
  75       }
  76  
  77       /**
  78        * Get s the valu e of the n umberOfCan didates pr operty.
  79        * 
  80        */
  81       public  int getNu mberOfCand idates() {
  82           re turn numbe rOfCandida tes;
  83       }
  84  
  85       /**
  86        * Set s the valu e of the n umberOfCan didates pr operty.
  87        * 
  88        */
  89       public  void setN umberOfCan didates(in t value) {
  90           th is.numberO fCandidate s = value;
  91       }
  92  
  93       /**
  94        * Get s the valu e of the e esVersion0 020 proper ty.
  95        * 
  96        * @re turn
  97        *      possible  object is
  98        *      {@link St ring }
  99        *      
  100        */
  101       public  String ge tEesVersio n_0020() {
  102           re turn eesVe rsion0020;
  103       }
  104  
  105       /**
  106        * Set s the valu e of the e esVersion0 020 proper ty.
  107        * 
  108        * @pa ram value
  109        *      allowed o bject is
  110        *      {@link St ring }
  111        *      
  112        */
  113       public  void setE esVersion_ 0020(Strin g value) {
  114           th is.eesVers ion0020 =  value;
  115       }
  116  
  117       /**
  118        * Get s the valu e of the i nvocationD ate0020 pr operty.
  119        * 
  120        * @re turn
  121        *      possible  object is
  122        *      {@link XM LGregorian Calendar }
  123        *      
  124        */
  125       public  XMLGregor ianCalenda r getInvoc ationDate_ 0020() {
  126           re turn invoc ationDate0 020;
  127       }
  128  
  129       /**
  130        * Set s the valu e of the i nvocationD ate0020 pr operty.
  131        * 
  132        * @pa ram value
  133        *      allowed o bject is
  134        *      {@link XM LGregorian Calendar }
  135        *      
  136        */
  137       public  void setI nvocationD ate_0020(X MLGregoria nCalendar  value) {
  138           th is.invocat ionDate002 0 = value;
  139       }
  140  
  141   }