516. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 5/10/2018 8:40:01 AM Central 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.

516.1 Files compared

# Location File Last Modified
1 MHED_APPS_CIF.zip\SM v2.2.5\scheduling-manager-resources-2.2.5@e7f57981138.zip\SchedulingManagerService\src\inttest\java\com\agilex\healthcare\schedulingmanager\testutility IntegrationTestConfiguration.java Sat Apr 7 11:28:50 2018 UTC
2 MHED_APPS_CIF.zip\SM v2.2.5\scheduling-manager-resources-2.2.5@e7f57981138.zip\SchedulingManagerService\src\inttest\java\com\agilex\healthcare\schedulingmanager\testutility IntegrationTestConfiguration.java Thu May 3 12:59:01 2018 UTC

516.2 Comparison summary

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

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

516.4 Active regular expressions

No regular expressions were active.

516.5 Comparison detail

  1   package co m.agilex.h ealthcare. scheduling manager.te stutility;
  2  
  3   import jav a.util.Map ;
  4  
  5   import org .springfra mework.bea ns.factory .BeanFacto ry;
  6   import org .springfra mework.con text.suppo rt.ClassPa thXmlAppli cationCont ext;
  7  
  8   import com .agilex.he althcare.m obilehealt hplatform. domain.Pat ient;
  9   import com .agilex.he althcare.s chedulingm anager.cli entapi.Aut henticatio nInfo;
  10   import com .agilex.he althcare.u tility.Nul lChecker;
  11  
  12   public cla ss Integra tionTestCo nfiguratio n {
  13           pr ivate stat ic String  Scheduling ManagerBas eUri = "ht tp:// IP             /Schedulin gManagerSe rvice/v2/r est";
  14           pr ivate stat ic String  MobileHeal thPlatform ServerURI  = "http:// IP             /PatientVi ewerServic es/rest";
  15           pr ivate stat ic final S tring MHPA uthorizeUR I = "http: // IP             /Authoriza tionServic es/provide r/authoriz e";
  16           pr ivate stat ic final S tring MHPT okenURI =  "http:// IP             /Authoriza tionServic es/oauth/t oken";
  17  
  18           pu blic stati c String g etMobileHe althServer BaseUri()  {
  19                    retu rn MobileH ealthPlatf ormServerU RI;
  20           }
  21  
  22           pu blic stati c String g etScheduli ngManagerB aseUri() {
  23                    retu rn Schedul ingManager BaseUri;
  24           }
  25  
  26           pu blic stati c String g etMHPAutho rizeURI()  {
  27                    retu rn MHPAuth orizeURI;
  28           }
  29  
  30           pu blic stati c String g etMHPToken URI() {
  31                    retu rn MHPToke nURI;
  32           }
  33  
  34           pu blic stati c Authenti cationInfo  getLVProv iderAuthen ticationIn formation( ) {
  35                    Auth entication Info authe nticationI nfo = null ;
  36                    if ( NullChecke r.isNotNul lish(getAu thType()))  {
  37                             authen ticationIn fo = new A uthenticat ionInfo();
  38                             authen ticationIn fo.setUser name("acce ss7");
  39                             authen ticationIn fo.setPass word("veri fy7!");
  40                             authen ticationIn fo.setAuth type(getAu thType());
  41                             authen ticationIn fo.setFaci lityName(" BOSTON HCS  VAMC");
  42                             authen ticationIn fo.setFaci lityCode(" 523");
  43                    }
  44                    retu rn authent icationInf o;
  45           }
  46  
  47           pr ivate stat ic String  getAuthTyp e() {
  48                    Stri ng authtyp e = "oauth ";
  49                    retu rn authtyp e;
  50           }
  51   }