3892. EPMO Open Source Coordination Office Redaction File Detail Report

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

3892.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:58 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-server\src\main\java\gov\va\nvap\server\service\partner PartnerOnboardingBeanLocal.java Fri Apr 21 20:03:28 2017 UTC

3892.2 Comparison summary

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

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

3892.4 Active regular expressions

No regular expressions were active.

3892.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. server.ser vice.partn er;
        6  
        7   import gov .va.nvap.p artner.Par tner;
        8   import gov .va.nvap.s ervice.par tner.Partn erOnboardi ngExceptio n;
        9   import jav a.util.Lis t;
        10  
        11   import jav ax.ejb.Loc al;
        12  
        13   /**
        14    * 
        15    * @author  vhaislegb erb
        16    */
        17   @Local
        18   public int erface Par tnerOnboar dingBeanLo cal {
        19  
        20           /* *
        21            *  Business  method for  adding a  new partne r organiza tion to th e VAP syst em.
        22            *  This coul d also be  the point  at which f urther (do wn-stream)  on-boardi ng
        23            *  activitie s could be  triggered  to notify  other sys tems of th e changes  to
        24            *  the suppo rted partn ers.
        25            *  
        26            *  @param pa rtner
        27            *              The part ner to be  added.
        28            *  @param an nounce
        29            *              Announce  the patie nts to the  new partn er.
        30            *  @throws P artnerOnbo ardingExce ption
        31            *               In the  event that  the partn er could n ot be adde d.
        32            * /
        33           vo id addPart ner(final  Partner pa rtner, Boo lean annou nce)
        34                             throws  PartnerOn boardingEx ception;
        35  
        36           /* *
        37            *  Sets the  partner as  active if  the activ ate flag i s set to t rue; other wise
        38            *  set the p artner to  inactive.
        39            *  
        40            *  @param ac tivate
        41            *  @param oi d
        42            *              The OID  of the par tner which  is being  activated  or
        43            *              deactiva ted..
        44            *  @throws P artnerOnbo ardingExce ption
        45            *               In the  event that  the setti ng of the  status fla g fails.
        46            * /
        47           vo id setPart nerActiveF lag(Boolea n activate , String o id)
        48                             throws  PartnerOn boardingEx ception;
        49       
        50       /**
        51        * Get s a list o f organiza tions and  updates or  adds miss ing ones
        52        *
        53        * @pa ram partne rs List of  partners  to be adde d or modif ied.
        54        * @pa ram announ ce announc e all pati ents to ne w partners
        55        *
        56        * The  OID of th e partner  which is b eing activ ated or de activated. .
        57        * @th rows Partn erOnboardi ngExceptio n In the e vent that  it could n ot add a p artner or  other erro r arrises
        58        */
        59       void u pdatePartn erList(Lis t<Partner>  partners,  Boolean a nnounce)
        60           th rows Partn erOnboardi ngExceptio n;
        61  
        62   }