320. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/7/2018 11:36:14 AM Central 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.

320.1 Files compared

# Location File Last Modified
1 C:\SCRUB\MHED\MHED\VATS 2.3.0\var-utility-resources-2.3.0@ab955ab4732\VarUtilityResourceIntTest\src\resIntTest\java\gov\va\vamf\scheduling\varutility\clientapi AuthenticationInfo.java Mon Sep 17 15:51:54 2018 UTC
2 C:\MHED-scrubbed\MHED\MHED\VATS 2.3.0\var-utility-resources-2.3.0@ab955ab4732\VarUtilityResourceIntTest\src\resIntTest\java\gov\va\vamf\scheduling\varutility\clientapi AuthenticationInfo.java Fri Dec 7 13:26:36 2018 UTC

320.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 4 204
Changed 3 8
Inserted 0 0
Removed 0 0

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

320.4 Active regular expressions

No regular expressions were active.

320.5 Comparison detail

  1   package go v.va.vamf. scheduling .varutilit y.clientap i;
  2  
  3   public cla ss Authent icationInf o {
  4           pu blic stati c final St ring BASIC _AUTHENTIC ATION = "B ASIC";
  5           pu blic stati c final St ring DIGES T_AUTHENTI CATION = " DIGEST";
  6  
  7           pr ivate Stri ng usernam e;
  8           pr ivate Stri ng passwor d;
  9           pr ivate Stri ng authtyp e;
  10           pr ivate Stri ng clientI d;
  11           pr ivate Stri ng clientS ecret;
  12           pr ivate Stri ng facilit yName;
  13           pr ivate Stri ng facilit yCode;
  14           pr ivate bool ean expect Authentica tionRequir ed;
  15           pr ivate Stri ng authori zeUrl;
  16           pr ivate Stri ng tokenUr l;
  17  
  18           pu blic Strin g getAutho rizeUrl()  {
  19                    retu rn authori zeUrl;
  20           }
  21  
  22           pu blic void  setAuthori zeUrl(Stri ng authori zeUrl) {
  23                    this .authorize Url = auth orizeUrl;
  24           }
  25  
  26           pu blic Strin g getToken Url() {
  27                    retu rn tokenUr l;
  28           }
  29  
  30           pu blic void  setTokenUr l(String t okenUrl) {
  31                    this .tokenUrl  = tokenUrl ;
  32           }
  33  
  34           pu blic Authe nticationI nfo() {
  35           }
  36  
  37           pu blic Authe nticationI nfo(String  username,  String pa ssword, St ring autht ype) {
  38                     this. V s ID          
sername;
  39                     this. V s ID          
assword;
  40                    this .authtype  = authtype ;
  41           }
  42  
  43           pu blic void  setUsernam e(String u sername) {
  44                     this. V s ID          
sername;
  45           }
  46  
  47           pu blic Strin g getUsern ame() {
  48                    retu rn usernam e;
  49           }
  50  
  51           pu blic void  setPasswor d(String p assword) {
  52                     this. V s ID          
assword;
  53           }
  54  
  55           pu blic Strin g getPassw ord() {
  56                    retu rn passwor d;
  57           }
  58  
  59           pu blic void  setAuthtyp e(String a uthtype) {
  60                    this .authtype  = authtype ;
  61           }
  62  
  63           pu blic Strin g getAutht ype() {
  64                    retu rn authtyp e;
  65           }
  66  
  67           pu blic Strin g getClien tId() {
  68                    retu rn clientI d;
  69           }
  70  
  71           pu blic void  setClientI d(String c lientId) {
  72                    this .clientId  = clientId ;
  73           }
  74  
  75           pu blic boole an isExpec tAuthentic ationRequi red() {
  76                    retu rn expectA uthenticat ionRequire d;
  77           }
  78  
  79           pu blic void  setExpectA uthenticat ionRequire d(boolean  expectAuth entication Required)  {
  80                    this .expectAut henticatio nRequired  = expectAu thenticati onRequired ;
  81           }
  82  
  83           pu blic Strin g getClien tSecret()  {
  84                    retu rn clientS ecret;
  85           }
  86  
  87           pu blic void  setClientS ecret(Stri ng clientS ecret) {
  88                    this .clientSec ret = clie ntSecret;
  89           }
  90  
  91           pu blic Strin g getFacil ityName()  {
  92                    retu rn facilit yName;
  93           }
  94  
  95           pu blic void  setFacilit yName(Stri ng facilit yName) {
  96                    this .facilityN ame = faci lityName;
  97           }
  98  
  99           pu blic Strin g getFacil ityCode()  {
  100                    retu rn facilit yCode;
  101           }
  102  
  103           pu blic void  setFacilit yCode(Stri ng facilit yCode) {
  104                    this .facilityC ode = faci lityCode;
  105           }
  106   }