3190. EPMO Open Source Coordination Office Redaction File Detail Report

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

3190.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:49:56 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-common\src\main\java\gov\va\nvap\common\auth\context LoginContextExt.java Fri Apr 21 20:03:26 2017 UTC

3190.2 Comparison summary

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

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

3190.4 Active regular expressions

No regular expressions were active.

3190.5 Comparison detail

        1   package go v.va.nvap. common.aut h.context;
        2  
        3   import jav ax.securit y.auth.Sub ject;
        4   import jav ax.securit y.auth.cal lback.Call backHandle r;
        5   import jav ax.securit y.auth.log in.Configu ration;
        6   import jav ax.securit y.auth.log in.LoginEx ception;
        7  
        8   public cla ss LoginCo ntextExt e xtends jav ax.securit y.auth.log in.LoginCo ntext {
        9  
        10           pu blic Login ContextExt (final Str ing name)  throws Log inExceptio n {
        11                    supe r(name);
        12           }
        13  
        14           pu blic Login ContextExt (final Str ing name,
        15                             final  CallbackHa ndler call backHandle r) throws  LoginExcep tion {
        16                    supe r(name, ca llbackHand ler);
        17           }
        18  
        19           pu blic Login ContextExt (final Str ing name,
        20                             final  CallbackHa ndler call backHandle r, final C onfigurati on config)
        21                             throws  LoginExce ption {
        22                    supe r(name, nu ll, callba ckHandler,  config);
        23           }
        24  
        25           pu blic Login ContextExt (final Str ing name,  final Subj ect subjec t)
        26                             throws  LoginExce ption {
        27                    supe r(name, su bject);
        28           }
        29  
        30           pu blic Login ContextExt (final Str ing name,  final Subj ect subjec t,
        31                             final  CallbackHa ndler call backHandle r) throws  LoginExcep tion {
        32                    supe r(name, su bject, cal lbackHandl er);
        33           }
        34  
        35           pu blic Login ContextExt (final Str ing name,  final Subj ect subjec t,
        36                             final  CallbackHa ndler call backHandle r, final C onfigurati on config)
        37                             throws  LoginExce ption {
        38                    supe r(name, su bject, cal lbackHandl er, config );
        39           }
        40  
        41   }