119. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/20/2017 5:56:12 PM Eastern 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.

119.1 Files compared

# Location File Last Modified
1 Genisis_2.0_v6_bld6.zip\Source Code\UI\Services\src\main\java\gov\va\genisis2\dto CommentHistoryDTO.java Thu Dec 14 19:57:10 2017 UTC
2 Genisis_2.0_v6_bld6.zip\Source Code\UI\Services\src\main\java\gov\va\genisis2\dto CommentHistoryDTO.java Wed Dec 20 22:14:51 2017 UTC

119.2 Comparison summary

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

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

119.4 Active regular expressions

No regular expressions were active.

119.5 Comparison detail

  1   package go v.va.genis is2.dto;
  2  
  3   import jav a.io.Seria lizable;
  4   import jav a.util.Dat e;
  5  
  6   import jav ax.xml.bin d.annotati on.XmlRoot Element;
  7  
  8   import com .fasterxml .jackson.a nnotation. JsonIgnore Properties ;
  9   import com .fasterxml .jackson.a nnotation. JsonInclud e;
  10   import com .fasterxml .jackson.a nnotation. JsonInclud e.Include;
  11  
  12   /**
  13    * Data Tr ansfer Obj ect (DTO)  to transfe r comment  history re lated deta ils
  14    * 
  15    * @author  P II
  16    *
  17    */
  18   @XmlRootEl ement(name  = "commen tHistory")
  19   @JsonInclu de(Include .NON_NULL)
  20   @JsonIgnor ePropertie s({ "reque st", "work flowStatus ", "commen tId", "tas kId" })
  21   public cla ss Comment HistoryDTO  implement s Serializ able {
  22  
  23           pr ivate stat ic final l ong serial VersionUID  = -275340 5586256288 464L;
  24           pr ivate int  commentId;
  25           pr ivate int  requestId;
  26           pr ivate Stri ng comment s;
  27           pr ivate Date  createdOn ;
  28           pr ivate Stri ng created By;
  29           pr ivate Stri ng status;
  30           pr ivate Stri ng type;
  31           pr ivate int  commentTyp e;
  32           
  33           
  34  
  35           /* *
  36            *  @return t he comment Id
  37            * /
  38           pu blic int g etCommentI d() {
  39                    retu rn comment Id;
  40           }
  41  
  42           /* *
  43            *  @param co mmentId
  44            *              the comm entId to s et
  45            * /
  46           pu blic void  setComment Id(int com mentId) {
  47                    this .commentId  = comment Id;
  48           }
  49  
  50           /* *
  51            *  @return t he request Id
  52            * /
  53           pu blic int g etRequestI d() {
  54                    retu rn request Id;
  55           }
  56  
  57           /* *
  58            *  @param re questId
  59            *              the requ estId to s et
  60            * /
  61           pu blic void  setRequest Id(int req uestId) {
  62                    this .requestId  = request Id;
  63           }
  64  
  65           /* *
  66            *  @return t he comment s
  67            * /
  68           pu blic Strin g getComme nts() {
  69                    retu rn comment s;
  70           }
  71  
  72           /* *
  73            *  @param co mments
  74            *              the comm ents to se t
  75            * /
  76           pu blic void  setComment s(String c omments) {
  77                    this .comments  = comments ;
  78           }
  79  
  80           /* *
  81            *  @return t he created On
  82            * /
  83           pu blic Date  getCreated On() {
  84                    retu rn created On;
  85           }
  86  
  87           /* *
  88            *  @param cr eatedOn
  89            *              the crea tedOn to s et
  90            * /
  91           pu blic void  setCreated On(Date cr eatedOn) {
  92                    this .createdOn  = created On;
  93           }
  94  
  95           /* *
  96            *  @return t he created By
  97            * /
  98           pu blic Strin g getCreat edBy() {
  99                    retu rn created By;
  100           }
  101  
  102           /* *
  103            *  @param cr eatedBy
  104            *              the crea tedBy to s et
  105            * /
  106           pu blic void  setCreated By(String  createdBy)  {
  107                    this .createdBy  = created By;
  108           }
  109  
  110           /* *
  111            *  @return t he status
  112            * /
  113           pu blic Strin g getStatu s() {
  114                    retu rn status;
  115           }
  116  
  117           /* *
  118            *  @param st atus
  119            *              the stat us to set
  120            * /
  121           pu blic void  setStatus( String sta tus) {
  122                    this .status =  status;
  123           }
  124  
  125           /* *
  126            *  @return t he type
  127            * /
  128           pu blic Strin g getType( ) {
  129                    retu rn type;
  130           }
  131  
  132           /* *
  133            *  @param ty pe
  134            *              the type  to set
  135            * /
  136           pu blic void  setType(St ring type)  {
  137                    this .type = ty pe;
  138           }
  139  
  140           pu blic int g etCommentT ype() {
  141                    retu rn comment Type;
  142           }
  143  
  144           pu blic void  setComment Type(int c ommentType ) {
  145                    this .commentTy pe = comme ntType;
  146           }
  147  
  148  
  149  
  150           
  151           
  152           
  153   }