223. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 5/10/2018 8:39:50 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.

223.1 Files compared

# Location File Last Modified
1 MHED_APPS_CIF.zip\SM v2.2.5\scheduling-manager-resources-2.2.5@e7f57981138.zip\SchedulingManagerMDWSLib\src\main\java\com\agilex\healthcare\schedulingmanager\mdws\generatedwsdl\emrservice LexiconEntryTO.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\SchedulingManagerMDWSLib\src\main\java\com\agilex\healthcare\schedulingmanager\mdws\generatedwsdl\emrservice LexiconEntryTO.java Thu May 3 12:55:09 2018 UTC

223.2 Comparison summary

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

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

223.4 Active regular expressions

No regular expressions were active.

223.5 Comparison detail

  1  
  2   package co m.agilex.h ealthcare. scheduling manager.md ws.generat edwsdl.emr service;
  3  
  4   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
  5   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
  6   import jav ax.xml.bin d.annotati on.XmlType ;
  7  
  8  
  9   /**
  10    * <p>Java  class for  LexiconEn tryTO comp lex type.
  11    * 
  12    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  13    * 
  14    * <pre>
  15    * &lt;com plexType n ame="Lexic onEntryTO" >
  16    *   &lt;c omplexCont ent>
  17    *       &lt;extens ion base=" {http:// DNS          /EmrSvc}Ab stractTO">
  18    *       & lt;sequenc e>
  19    *          &lt;eleme nt name="l exIen" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/>
  20    *          &lt;eleme nt name="p refText" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" />
  21    *          &lt;eleme nt name="c odeSys" ty pe="{http: //www.w3.o rg/2001/XM LSchema}st ring" minO ccurs="0"/ >
  22    *          &lt;eleme nt name="c onceptID"  type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/>
  23    *          &lt;eleme nt name="i cdVer" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/>
  24    *          &lt;eleme nt name="d esigID" ty pe="{http: //www.w3.o rg/2001/XM LSchema}st ring" minO ccurs="0"/ >
  25    *          &lt;eleme nt name="p arentSubsc ript" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0"/>
  26    *       & lt;/sequen ce>
  27    *     &lt ;/extensio n>
  28    *   &lt;/ complexCon tent>
  29    * &lt;/co mplexType>
  30    * </pre>
  31    * 
  32    * 
  33    */
  34   @XmlAccess orType(Xml AccessType .FIELD)
  35   @XmlType(n ame = "Lex iconEntryT O", propOr der = {
  36       "lexIe n",
  37       "prefT ext",
  38       "codeS ys",
  39       "conce ptID",
  40       "icdVe r",
  41       "desig ID",
  42       "paren tSubscript "
  43   })
  44   public cla ss Lexicon EntryTO
  45       extend s Abstract TO
  46   {
  47  
  48       protec ted String  lexIen;
  49       protec ted String  prefText;
  50       protec ted String  codeSys;
  51       protec ted String  conceptID ;
  52       protec ted String  icdVer;
  53       protec ted String  desigID;
  54       protec ted String  parentSub script;
  55  
  56       /**
  57        * Get s the valu e of the l exIen prop erty.
  58        * 
  59        * @re turn
  60        *      possible  object is
  61        *      {@link St ring }
  62        *      
  63        */
  64       public  String ge tLexIen()  {
  65           re turn lexIe n;
  66       }
  67  
  68       /**
  69        * Set s the valu e of the l exIen prop erty.
  70        * 
  71        * @pa ram value
  72        *      allowed o bject is
  73        *      {@link St ring }
  74        *      
  75        */
  76       public  void setL exIen(Stri ng value)  {
  77           th is.lexIen  = value;
  78       }
  79  
  80       /**
  81        * Get s the valu e of the p refText pr operty.
  82        * 
  83        * @re turn
  84        *      possible  object is
  85        *      {@link St ring }
  86        *      
  87        */
  88       public  String ge tPrefText( ) {
  89           re turn prefT ext;
  90       }
  91  
  92       /**
  93        * Set s the valu e of the p refText pr operty.
  94        * 
  95        * @pa ram value
  96        *      allowed o bject is
  97        *      {@link St ring }
  98        *      
  99        */
  100       public  void setP refText(St ring value ) {
  101           th is.prefTex t = value;
  102       }
  103  
  104       /**
  105        * Get s the valu e of the c odeSys pro perty.
  106        * 
  107        * @re turn
  108        *      possible  object is
  109        *      {@link St ring }
  110        *      
  111        */
  112       public  String ge tCodeSys()  {
  113           re turn codeS ys;
  114       }
  115  
  116       /**
  117        * Set s the valu e of the c odeSys pro perty.
  118        * 
  119        * @pa ram value
  120        *      allowed o bject is
  121        *      {@link St ring }
  122        *      
  123        */
  124       public  void setC odeSys(Str ing value)  {
  125           th is.codeSys  = value;
  126       }
  127  
  128       /**
  129        * Get s the valu e of the c onceptID p roperty.
  130        * 
  131        * @re turn
  132        *      possible  object is
  133        *      {@link St ring }
  134        *      
  135        */
  136       public  String ge tConceptID () {
  137           re turn conce ptID;
  138       }
  139  
  140       /**
  141        * Set s the valu e of the c onceptID p roperty.
  142        * 
  143        * @pa ram value
  144        *      allowed o bject is
  145        *      {@link St ring }
  146        *      
  147        */
  148       public  void setC onceptID(S tring valu e) {
  149           th is.concept ID = value ;
  150       }
  151  
  152       /**
  153        * Get s the valu e of the i cdVer prop erty.
  154        * 
  155        * @re turn
  156        *      possible  object is
  157        *      {@link St ring }
  158        *      
  159        */
  160       public  String ge tIcdVer()  {
  161           re turn icdVe r;
  162       }
  163  
  164       /**
  165        * Set s the valu e of the i cdVer prop erty.
  166        * 
  167        * @pa ram value
  168        *      allowed o bject is
  169        *      {@link St ring }
  170        *      
  171        */
  172       public  void setI cdVer(Stri ng value)  {
  173           th is.icdVer  = value;
  174       }
  175  
  176       /**
  177        * Get s the valu e of the d esigID pro perty.
  178        * 
  179        * @re turn
  180        *      possible  object is
  181        *      {@link St ring }
  182        *      
  183        */
  184       public  String ge tDesigID()  {
  185           re turn desig ID;
  186       }
  187  
  188       /**
  189        * Set s the valu e of the d esigID pro perty.
  190        * 
  191        * @pa ram value
  192        *      allowed o bject is
  193        *      {@link St ring }
  194        *      
  195        */
  196       public  void setD esigID(Str ing value)  {
  197           th is.desigID  = value;
  198       }
  199  
  200       /**
  201        * Get s the valu e of the p arentSubsc ript prope rty.
  202        * 
  203        * @re turn
  204        *      possible  object is
  205        *      {@link St ring }
  206        *      
  207        */
  208       public  String ge tParentSub script() {
  209           re turn paren tSubscript ;
  210       }
  211  
  212       /**
  213        * Set s the valu e of the p arentSubsc ript prope rty.
  214        * 
  215        * @pa ram value
  216        *      allowed o bject is
  217        *      {@link St ring }
  218        *      
  219        */
  220       public  void setP arentSubsc ript(Strin g value) {
  221           th is.parentS ubscript =  value;
  222       }
  223  
  224   }