3018. EPMO Open Source Coordination Office Redaction File Detail Report

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

3018.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:49:42 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-client\src\main\java\gov\va\nvap\partner Partner.java Fri Apr 21 20:03:26 2017 UTC

3018.2 Comparison summary

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

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

3018.4 Active regular expressions

No regular expressions were active.

3018.5 Comparison detail

        1   /*
        2    * To chan ge this te mplate, ch oose Tools  | Templat es
        3    * and ope n the temp late in th e editor.
        4    */
        5   package go v.va.nvap. partner;
        6  
        7   /**
        8    * 
        9    * @author  vhaislegb erb
        10    */
        11   public cla ss Partner  {
        12  
        13           pr ivate Stri ng communi tyIdPrefix ;
        14           pr ivate Stri ng contact ;
        15           pr ivate Stri ng domain;
        16           pr ivate Stri ng name;
        17           pr ivate Stri ng number;
        18           pr ivate Stri ng oid;
        19           pr ivate Stri ng phoneNu mber;
        20  
        21           pu blic Strin g getCommu nityIdPref ix() {
        22                    retu rn this.co mmunityIdP refix;
        23           }
        24  
        25           pu blic Strin g getConta ct() {
        26                    retu rn this.co ntact;
        27           }
        28  
        29           pu blic Strin g getDomai n() {
        30                    retu rn this.do main;
        31           }
        32  
        33           pu blic Strin g getName( ) {
        34                    retu rn this.na me;
        35           }
        36  
        37           pu blic Strin g getNumbe r() {
        38                    retu rn this.nu mber;
        39           }
        40  
        41           pu blic Strin g getOid()  {
        42                    retu rn this.oi d;
        43           }
        44  
        45           pu blic Strin g getPhone Number() {
        46                    retu rn this.ph oneNumber;
        47           }
        48  
        49           pu blic void  setCommuni tyIdPrefix (final Str ing commun ityIdPrefi x) {
        50                    this .community IdPrefix =  community IdPrefix;
        51           }
        52  
        53           pu blic void  setContact (final Str ing contac t) {
        54                    this .contact =  contact;
        55           }
        56  
        57           pu blic void  setDomain( final Stri ng domain)  {
        58                    this .domain =  domain;
        59           }
        60  
        61           pu blic void  setName(fi nal String  name) {
        62                    this .name = na me;
        63           }
        64  
        65           pu blic void  setNumber( final Stri ng number)  {
        66                    this .number =  number;
        67           }
        68  
        69           pu blic void  setOid(fin al String  oid) {
        70                    this .oid = oid ;
        71           }
        72  
        73           pu blic void  setPhoneNu mber(final  String ph oneNumber)  {
        74                    this .phoneNumb er = phone Number;
        75           }
        76   }