162. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:24 AM Eastern 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.

162.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\service\common TerminologyService.java Fri Dec 7 17:36:30 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\service\common TerminologyService.java Wed Dec 12 19:52:47 2018 UTC

162.2 Comparison summary

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

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

162.4 Active regular expressions

No regular expressions were active.

162.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrig ht � 2010  VHA. All r ights rese rved
  3    ********* ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.c cht.servic e.common;
  5  
  6   import jav a.util.Col lection;
  7   import jav a.util.Lis t;
  8   import jav a.util.Map ;
  9  
  10   import gov .va.med.fw .model.loo kup.Abstra ctLookup;
  11   import gov .va.med.fw .model.loo kup.Lookup ;
  12  
  13   /**
  14    * IHTA IH TA_common  Jun 26, 20 10
  15    * 
  16    * @author          DN S
  17    */
  18   public int erface Ter minologySe rvice {
  19           /* *
  20            *  Returns a ll the pre defined co ding syste m objects  of a parti cular type .
  21            *  
  22            *  @param te rminologyT ype
  23            *              The type  of coding  system to  search fo r.
  24            *  @return A ll the pre defined co ding syste m objectso f a partic ular type.
  25            *  @throws U nknownTerm inologyTyp eException
  26            *               if the  <code>term inologyTyp e</code> i s unknown.
  27            * /
  28           pu blic List< ? extends  Lookup> fi ndAll(Stri ng termino logyType)  throws Ter minologyEx ception;
  29  
  30           pu blic <T ex tends Look up> List<T > findAll( Class<T> t erminology Type) thro ws Termino logyExcept ion;
  31  
  32           pu blic <T ex tends Look up> List<T > findAllA ctive(Clas s<T> termi nologyType )
  33                             throws  Terminolo gyExceptio n;
  34  
  35           pu blic Looku p getByCod e(String t erminology Type, Stri ng code) t hrows Term inologyExc eption;
  36  
  37           /* *
  38            *  Returns a  mapping o f codes to  Lookups.  If some co de wasn't  found, it
  39            *  won't be  present in  the retur ned map.
  40            *  
  41            *  @param <T >
  42            *  @param te rminologyT ype
  43            *  @param co des
  44            *  @return
  45            *  @throws T erminology Exception
  46            * /
  47           pu blic <T ex tends Look up> Map<St ring, T> g etByCodes( Class<T> t erminology Type,
  48                             Collec tion<Strin g> codes)  throws Ter minologyEx ception;
  49  
  50           pu blic <T ex tends Look up> T getB yCode(Clas s<T> termi nologyType , String c ode)
  51                             throws  Terminolo gyExceptio n;
  52  
  53           pu blic Looku p getByNam e(String t erminology Type, Stri ng name) t hrows Term inologyExc eption;
  54  
  55           pu blic <T ex tends Look up> T getB yName(Clas s<T> termi nologyType , String n ame)
  56                             throws  Terminolo gyExceptio n;
  57  
  58           pu blic Looku p getById( String ter minologyTy pe, Long i d) throws  Terminolog yException ;
  59  
  60           pu blic <T ex tends Look up> T getB yId(Class< T> termino logyType,  Long id)
  61                             throws  Terminolo gyExceptio n;
  62  
  63           pu blic List< ? extends  Lookup> se archTerms( String loo kupName, S tring sear chCriteria ) throws T erminology Exception;
  64           
  65           /*  typed ser vices belo w - for co nvenience  */    
  66           
  67           pu blic void  save(Abstr actLookup  lookup) th rows Termi nologyExce ption;
  68   }