37320. EPMO Open Source Coordination Office Redaction File Detail Report

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

37320.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 AbstractTO.java Wed Jan 16 16:06:30 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 AbstractTO.java Wed Jan 16 20:15:11 2019 UTC

37320.2 Comparison summary

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

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

37320.4 Active regular expressions

No regular expressions were active.

37320.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.XmlSeeA lso;
  7   import jav ax.xml.bin d.annotati on.XmlType ;
  8  
  9  
  10   /**
  11    * <p>Java  class for  abstractT 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="abstr actTO"&gt;
  17    *   &lt;c omplexCont ent&gt;
  18    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "&gt;
  19    *       & lt;sequenc e&gt;
  20    *           &lt;elemen t name="fa ult" type= "{http:// DNS          . URL         /}faultTO"  minOccurs ="0" form= "unqualifi ed"/&gt;
  21    *       & lt;/sequen ce&gt;
  22    *     &lt ;/restrict ion&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 = "abs tractTO",  propOrder  = {
  31       "fault "
  32   })
  33   @XmlSeeAls o({
  34       Addres sTO.class,
  35       AdtTO. class,
  36       Allerg yTO.class,
  37       Appoin tmentTO.cl ass,
  38       Author TO.class,
  39       BoolTO .class,
  40       ChemHe mRpt.class ,
  41       Cytolo gyRpt.clas s,
  42       DataSo urceTO.cla ss,
  43       Graphi ngItemData TO.class,
  44       Health FactorTO.c lass,
  45       Health SummaryTO. class,
  46       Hospit alLocation TO.class,
  47       IcdRpt .class,
  48       Imagin gExamTO.cl ass,
  49       Inpati entStayTO. class,
  50       ItemFo rGraphingT ypeTO.clas s,
  51       LabRes ultTO.clas s,
  52       LabSpe cimenTO.cl ass,
  53       LabTes tTO.class,
  54       Lexico nEntryTO.c lass,
  55       Medica tionTO.cla ss,
  56       Mental HealthInst rumentAdmi nistration TO.class,
  57       Mental HealthInst rumentResu ltSetTO.cl ass,
  58       Microb iologyRpt. class,
  59       NoteRe sultTO.cla ss,
  60       NoteTO .class,
  61       Observ ationTypeT O.class,
  62       OrderT O.class,
  63       OrderT ypeTO.clas s,
  64       Person TO.class,
  65       Person sTO.class,
  66       PhoneN umTO.class ,
  67       Proble mTO.class,
  68       Qualif ierTO.clas s,
  69       Radiol ogyReportT O.class,
  70       Signat ureStatusT O.class,
  71       SiteTO .class,
  72       Surger yReportTO. class,
  73       Surgic alPatholog yRpt.class ,
  74       Sympto mTO.class,
  75       Tagged Text.class ,
  76       TextTO .class,
  77       TimeSl otTO.class ,
  78       UserSe curityKeyT O.class,
  79       UserTO .class,
  80       VisitT O.class,
  81       VitalS ignSetTO.c lass,
  82       VitalS ignTO.clas s,
  83       Discha rgeDiagnos esTO.class ,
  84       Abstra ctArrayTO. class,
  85       Patien tRecordFla gTO.class
  86   })
  87   public abs tract clas s Abstract TO {
  88  
  89       protec ted FaultT O fault;
  90  
  91       /**
  92        * Get s the valu e of the f ault prope rty.
  93        * 
  94        * @re turn
  95        *      possible  object is
  96        *      {@link Fa ultTO }
  97        *      
  98        */
  99       public  FaultTO g etFault()  {
  100           re turn fault ;
  101       }
  102  
  103       /**
  104        * Set s the valu e of the f ault prope rty.
  105        * 
  106        * @pa ram value
  107        *      allowed o bject is
  108        *      {@link Fa ultTO }
  109        *      
  110        */
  111       public  void setF ault(Fault TO value)  {
  112           th is.fault =  value;
  113       }
  114  
  115   }