80. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 7/10/2017 1:01:44 PM 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.

80.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\IV-ehmp_cif\ImagingVistaRealm\main\src\java\gov\va\med\imaging\tomcat\vistarealm AbstractVistaRealm.java Thu Jun 29 17:23:03 2017 UTC
2 C:\AraxisMergeCompare\Pri_re\IV-ehmp_cif\ImagingVistaRealm\main\src\java\gov\va\med\imaging\tomcat\vistarealm AbstractVistaRealm.java Thu Jul 6 15:03:41 2017 UTC

80.2 Comparison summary

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

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

80.4 Active regular expressions

No regular expressions were active.

80.5 Comparison detail

  1   package go v.va.med.i maging.tom cat.vistar ealm;
  2  
  3   /**
  4    * defines  the core  interface  for all VI X realm im plementati ons
  5    * @author         
BECKEC
  6    *
  7    */
  8   public int erface Abs tractVista Realm
  9   extends Pr eemptiveAu thorizatio n
  10   {
  11           pu blic abstr act String  getRealmN ame();
  12  
  13           pu blic abstr act boolea n isInitia lized();
  14  
  15           pu blic abstr act String  getRealmI mplementat ionName();
  16  
  17           pu blic abstr act float  getVersion ();
  18  
  19           //  ========= ========== ========== ========== ========== ========== ========== ========== ========== ========== ========
  20           //  JavaBean  Property A ccessors
  21           //  These pro perties ma y be set f rom the se rver confi guration.
  22           //  ========= ========== ========== ========== ========== ========== ========== ========== ========== ========== ========
  23           /* *
  24            *  @see gov. va.med.ima ging.tomca t.vistarea lm.VistaRe almSite#ge tSiteAbbr( )
  25            * /
  26           pu blic abstr act String  getSiteAb breviation ();
  27  
  28           /* *
  29            *  @see gov. va.med.ima ging.tomca t.vistarea lm.VistaRe almSite#ge tSiteName( )
  30            * /
  31           pu blic abstr act String  getSiteNa me();
  32  
  33           /* *
  34            *  @see gov. va.med.ima ging.tomca t.vistarea lm.VistaRe almSite#ge tSiteNumbe r()
  35            * /
  36           pu blic abstr act String  getSiteNu mber();
  37  
  38           /* *
  39            *  
  40            *  @return
  41            * /
  42           pu blic abstr act Boolea n isUsingP rincipalCa che();
  43           pu blic abstr act void s etUsingPri ncipalCach e(Boolean  usingPrinc ipalCache) ;
  44  
  45           /* *
  46            *  the lifes pan of a p rincipal c ache item  in millise conds
  47            *  
  48            *  @return
  49            * /
  50           pu blic abstr act Long g etPrincipa lCacheLife span();
  51           pu blic abstr act void s etPrincipa lCacheLife span(Long  principalC acheLifesp an);
  52  
  53           /* *
  54            *  If true t hen the in cept date  of a princ ipal cache  entry is  refreshed  each
  55            *  time it i s used.
  56            *  
  57            *  @return
  58            * /
  59           pu blic abstr act Boolea n isRefres hPrincipal CacheEntry OnUse();
  60           pu blic abstr act void s etRefreshP rincipalCa cheEntryOn Use(Boolea n refreshP rincipalCa cheEntryOn Use);
  61  
  62           /* *
  63            *  The numbe r of entri es current ly in the  principal  cache
  64            *  
  65            *  @return
  66            * /
  67           pu blic abstr act int ge tPrincipal CacheSize( );
  68  
  69           /* *
  70            *  Get the t ime that t he princip al cache w as last cl eaned of o ld entries
  71            *  
  72            *  @return
  73            * /
  74           pu blic abstr act long g etLastPrin cipalCache SweepDate( );
  75           
  76  
  77           /* *
  78            *  
  79            * /
  80           pu blic void  evictOldPr incipalCac heEntries( );
  81  
  82           /* *
  83            *  Clear all  principal  cache ent ries
  84            * /
  85           pu blic void  clearPrinc ipalCache( );
  86  
  87  
  88           /* *
  89            *  The numbe r of entri es current ly in the  security c onstraints  cache. No te
  90            *  that this  is equiva lent to th e number o f Context  (web apps)  that the
  91            *  realm is  servicing  and not th e number o f security  constrain ts per rea lm
  92            *  
  93            *  @return
  94            * /
  95           pu blic abstr act int ge tSecurityC onstraintC acheSize() ;
  96   }