37658. EPMO Open Source Coordination Office Redaction File Detail Report

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

37658.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 TimeSlotTO.java Wed Jan 16 16:06:42 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 TimeSlotTO.java Wed Jan 16 20:18:43 2019 UTC

37658.2 Comparison summary

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

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

37658.4 Active regular expressions

No regular expressions were active.

37658.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.XmlSche maType;
  7   import jav ax.xml.bin d.annotati on.XmlType ;
  8  
  9  
  10   /**
  11    * <p>Java  class for  timeSlotT O complex  type.
  12    * 
  13    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  14    * 
  15    * <pre>
  16    * &lt;com plexType n ame="timeS lotTO"&gt;
  17    *   &lt;c omplexCont ent&gt;
  18    *       &lt;extens ion base=" {http:// DNS          . URL         /}abstract TO"&gt;
  19    *       & lt;sequenc e&gt;
  20    *          &lt;eleme nt name="s tart" type ="{http:// www.w3.org /2001/XMLS chema}anyS impleType"  minOccurs ="0" form= "unqualifi ed"/&gt;
  21    *          &lt;eleme nt name="e nd" type=" {http://ww w.w3.org/2 001/XMLSch ema}anySim pleType" m inOccurs=" 0" form="u nqualified "/&gt;
  22    *          &lt;eleme nt name="t ext" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0" for m="unquali fied"/&gt;
  23    *          &lt;eleme nt name="a vailable"  type="{htt p://www.w3 .org/2001/ XMLSchema} boolean" f orm="unqua lified"/&g t;
  24    *       & lt;/sequen ce&gt;
  25    *     &lt ;/extensio n&gt;
  26    *   &lt;/ complexCon tent&gt;
  27    * &lt;/co mplexType& gt;
  28    * </pre>
  29    * 
  30    * 
  31    */
  32   @XmlAccess orType(Xml AccessType .FIELD)
  33   @XmlType(n ame = "tim eSlotTO",  propOrder  = {
  34       "start ",
  35       "end",
  36       "text" ,
  37       "avail able"
  38   })
  39   public cla ss TimeSlo tTO
  40       extend s Abstract TO
  41   {
  42  
  43       @XmlSc hemaType(n ame = "any SimpleType ")
  44       protec ted Object  start;
  45       @XmlSc hemaType(n ame = "any SimpleType ")
  46       protec ted Object  end;
  47       protec ted String  text;
  48       protec ted boolea n availabl e;
  49  
  50       /**
  51        * Get s the valu e of the s tart prope rty.
  52        * 
  53        * @re turn
  54        *      possible  object is
  55        *      {@link Ob ject }
  56        *      
  57        */
  58       public  Object ge tStart() {
  59           re turn start ;
  60       }
  61  
  62       /**
  63        * Set s the valu e of the s tart prope rty.
  64        * 
  65        * @pa ram value
  66        *      allowed o bject is
  67        *      {@link Ob ject }
  68        *      
  69        */
  70       public  void setS tart(Objec t value) {
  71           th is.start =  value;
  72       }
  73  
  74       /**
  75        * Get s the valu e of the e nd propert y.
  76        * 
  77        * @re turn
  78        *      possible  object is
  79        *      {@link Ob ject }
  80        *      
  81        */
  82       public  Object ge tEnd() {
  83           re turn end;
  84       }
  85  
  86       /**
  87        * Set s the valu e of the e nd propert y.
  88        * 
  89        * @pa ram value
  90        *      allowed o bject is
  91        *      {@link Ob ject }
  92        *      
  93        */
  94       public  void setE nd(Object  value) {
  95           th is.end = v alue;
  96       }
  97  
  98       /**
  99        * Get s the valu e of the t ext proper ty.
  100        * 
  101        * @re turn
  102        *      possible  object is
  103        *      {@link St ring }
  104        *      
  105        */
  106       public  String ge tText() {
  107           re turn text;
  108       }
  109  
  110       /**
  111        * Set s the valu e of the t ext proper ty.
  112        * 
  113        * @pa ram value
  114        *      allowed o bject is
  115        *      {@link St ring }
  116        *      
  117        */
  118       public  void setT ext(String  value) {
  119           th is.text =  value;
  120       }
  121  
  122       /**
  123        * Get s the valu e of the a vailable p roperty.
  124        * 
  125        */
  126       public  boolean i sAvailable () {
  127           re turn avail able;
  128       }
  129  
  130       /**
  131        * Set s the valu e of the a vailable p roperty.
  132        * 
  133        */
  134       public  void setA vailable(b oolean val ue) {
  135           th is.availab le = value ;
  136       }
  137  
  138   }