4171. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/9/2017 3:51:19 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.

4171.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:19 2017 UTC
2 eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-svc-consent-mgmt\src\main\java\gov\va\nvap\svc\consentmgmt\stub\data Schedule.java Fri Apr 21 20:03:30 2017 UTC

4171.2 Comparison summary

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

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

4171.4 Active regular expressions

No regular expressions were active.

4171.5 Comparison detail

        1   package go v.va.nvap. svc.consen tmgmt.stub .data;
        2  
        3   import jav a.io.Seria lizable;
        4   import jav a.util.Dat e;
        5   import jav ax.persist ence.Basic ;
        6   import jav ax.persist ence.Colum n;
        7   import jav ax.persist ence.Entit y;
        8   import jav ax.persist ence.Gener atedValue;
        9   import jav ax.persist ence.Gener ationType;
        10   import jav ax.persist ence.Id;
        11   import jav ax.persist ence.Named Queries;
        12   import jav ax.persist ence.Named Query;
        13   import jav ax.persist ence.Table ;
        14   import jav ax.persist ence.Tempo ral;
        15   import jav ax.persist ence.Tempo ralType;
        16  
        17   /**
        18    *
        19    * @author  Elan
        20    * @since  07/05/2016
        21    */
        22   @Entity
        23   @Table(nam e = "SCHED ULE")
        24   @NamedQuer ies({
        25       @Named Query(name  = "Schedu le.findAll ", query =  "SELECT a  FROM Sche dule a"),
        26       @Named Query(name  = "Schedu le.checkTo day", quer y = "SELEC T s FROM S chedule s  WHERE s.ty pe = :type  and s.eve ntDate >=  trunc(sysd ate) ")
        27   })
        28   public cla ss Schedul e implemen ts Seriali zable {
        29  
        30       privat e static f inal long  serialVers ionUID = 1 L;
        31       @Id
        32       @Gener atedValue( strategy =  Generatio nType.AUTO )
        33       @Basic (optional  = false)
        34       @Colum n(name = " SCHEDULE_I D")
        35       privat e Long sch eduleId;
        36       @Colum n(name = " EVENT_DATE ")
        37       @Tempo ral(Tempor alType.TIM ESTAMP)
        38       privat e Date eve ntDate;
        39       @Colum n(name = " TYPE")
        40       privat e String t ype;
        41  
        42       public  Schedule( ) {
        43       }
        44  
        45       public  Long getS cheduleId( ) {
        46           re turn sched uleId;
        47       }
        48  
        49       public  void setS cheduleId( Long sched uleId) {
        50           th is.schedul eId = sche duleId;
        51       }
        52  
        53       public  Date getE ventDate()  {
        54           re turn event Date;
        55       }
        56  
        57       public  void setE ventDate(D ate eventD ate) {
        58           th is.eventDa te = event Date;
        59       }
        60  
        61       public  String ge tType() {
        62           re turn type;
        63       }
        64  
        65       public  void setT ype(String  type) {
        66           th is.type =  type;
        67       }
        68  
        69   }