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

231.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 NoteResultTO.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 NoteResultTO.java Thu May 3 12:55:16 2018 UTC

231.2 Comparison summary

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

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

231.4 Active regular expressions

No regular expressions were active.

231.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  NoteResul tTO comple x 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="NoteR esultTO">
  16    *   &lt;c omplexCont ent>
  17    *       &lt;extens ion base=" {http:// DNS          /EmrSvc}Ab stractTO">
  18    *       & lt;sequenc e>
  19    *          &lt;eleme nt name="i d" type="{ http://www .w3.org/20 01/XMLSche ma}string"  minOccurs ="0"/>
  20    *          &lt;eleme nt name="t otalPages"  type="{ht tp://www.w 3.org/2001 /XMLSchema }int"/>
  21    *          &lt;eleme nt name="l astPageRec d" type="{ http://www .w3.org/20 01/XMLSche ma}int"/>
  22    *          &lt;eleme nt name="e xplanation " type="{h ttp://www. w3.org/200 1/XMLSchem a}string"  minOccurs= "0"/>
  23    *       & lt;/sequen ce>
  24    *     &lt ;/extensio n>
  25    *   &lt;/ complexCon tent>
  26    * &lt;/co mplexType>
  27    * </pre>
  28    * 
  29    * 
  30    */
  31   @XmlAccess orType(Xml AccessType .FIELD)
  32   @XmlType(n ame = "Not eResultTO" , propOrde r = {
  33       "id",
  34       "total Pages",
  35       "lastP ageRecd",
  36       "expla nation"
  37   })
  38   public cla ss NoteRes ultTO
  39       extend s Abstract TO
  40   {
  41  
  42       protec ted String  id;
  43       protec ted int to talPages;
  44       protec ted int la stPageRecd ;
  45       protec ted String  explanati on;
  46  
  47       /**
  48        * Get s the valu e of the i d property .
  49        * 
  50        * @re turn
  51        *      possible  object is
  52        *      {@link St ring }
  53        *      
  54        */
  55       public  String ge tId() {
  56           re turn id;
  57       }
  58  
  59       /**
  60        * Set s the valu e of the i d property .
  61        * 
  62        * @pa ram value
  63        *      allowed o bject is
  64        *      {@link St ring }
  65        *      
  66        */
  67       public  void setI d(String v alue) {
  68           th is.id = va lue;
  69       }
  70  
  71       /**
  72        * Get s the valu e of the t otalPages  property.
  73        * 
  74        */
  75       public  int getTo talPages()  {
  76           re turn total Pages;
  77       }
  78  
  79       /**
  80        * Set s the valu e of the t otalPages  property.
  81        * 
  82        */
  83       public  void setT otalPages( int value)  {
  84           th is.totalPa ges = valu e;
  85       }
  86  
  87       /**
  88        * Get s the valu e of the l astPageRec d property .
  89        * 
  90        */
  91       public  int getLa stPageRecd () {
  92           re turn lastP ageRecd;
  93       }
  94  
  95       /**
  96        * Set s the valu e of the l astPageRec d property .
  97        * 
  98        */
  99       public  void setL astPageRec d(int valu e) {
  100           th is.lastPag eRecd = va lue;
  101       }
  102  
  103       /**
  104        * Get s the valu e of the e xplanation  property.
  105        * 
  106        * @re turn
  107        *      possible  object is
  108        *      {@link St ring }
  109        *      
  110        */
  111       public  String ge tExplanati on() {
  112           re turn expla nation;
  113       }
  114  
  115       /**
  116        * Set s the valu e of the e xplanation  property.
  117        * 
  118        * @pa ram value
  119        *      allowed o bject is
  120        *      {@link St ring }
  121        *      
  122        */
  123       public  void setE xplanation (String va lue) {
  124           th is.explana tion = val ue;
  125       }
  126  
  127   }