3600. EPMO Open Source Coordination Office Redaction File Detail Report

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

3600.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:21 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-ext-svc-proxy\src\main\java\oasis\names\tc\xacml\_2_0\context\schema\os StatusCodeType.java Fri Apr 21 20:03:28 2017 UTC

3600.2 Comparison summary

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

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

3600.4 Active regular expressions

No regular expressions were active.

3600.5 Comparison detail

        1  
        2   package oa sis.names. tc.xacml._ 2_0.contex t.schema.o s;
        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.XmlAttr ibute;
        7   import jav ax.xml.bin d.annotati on.XmlElem ent;
        8   import jav ax.xml.bin d.annotati on.XmlSche maType;
        9   import jav ax.xml.bin d.annotati on.XmlType ;
        10  
        11  
        12   /**
        13    * <p>Java  class for  StatusCod eType comp lex type.
        14    * 
        15    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
        16    * 
        17    * <pre>
        18    * &lt;com plexType n ame="Statu sCodeType" >
        19    *   &lt;c omplexCont ent>
        20    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
        21    *       & lt;sequenc e>
        22    *          &lt;eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:co ntext:sche ma:os}Stat usCode" mi nOccurs="0 "/>
        23    *       & lt;/sequen ce>
        24    *       & lt;attribu te name="V alue" use= "required"  type="{ht tp://www.w 3.org/2001 /XMLSchema }anyURI" / >
        25    *     &lt ;/restrict ion>
        26    *   &lt;/ complexCon tent>
        27    * &lt;/co mplexType>
        28    * </pre>
        29    * 
        30    * 
        31    */
        32   @XmlAccess orType(Xml AccessType .FIELD)
        33   @XmlType(n ame = "Sta tusCodeTyp e", propOr der = {
        34       "statu sCode"
        35   })
        36   public cla ss StatusC odeType {
        37  
        38       @XmlEl ement(name  = "Status Code")
        39       protec ted Status CodeType s tatusCode;
        40       @XmlAt tribute(na me = "Valu e", requir ed = true)
        41       @XmlSc hemaType(n ame = "any URI")
        42       protec ted String  value;
        43  
        44       /**
        45        * Get s the valu e of the s tatusCode  property.
        46        * 
        47        * @re turn
        48        *      possible  object is
        49        *      {@link St atusCodeTy pe }
        50        *      
        51        */
        52       public  StatusCod eType getS tatusCode( ) {
        53           re turn statu sCode;
        54       }
        55  
        56       /**
        57        * Set s the valu e of the s tatusCode  property.
        58        * 
        59        * @pa ram value
        60        *      allowed o bject is
        61        *      {@link St atusCodeTy pe }
        62        *      
        63        */
        64       public  void setS tatusCode( StatusCode Type value ) {
        65           th is.statusC ode = valu e;
        66       }
        67  
        68       /**
        69        * Get s the valu e of the v alue prope rty.
        70        * 
        71        * @re turn
        72        *      possible  object is
        73        *      {@link St ring }
        74        *      
        75        */
        76       public  String ge tValue() {
        77           re turn value ;
        78       }
        79  
        80       /**
        81        * Set s the valu e of the v alue prope rty.
        82        * 
        83        * @pa ram value
        84        *      allowed o bject is
        85        *      {@link St ring }
        86        *      
        87        */
        88       public  void setV alue(Strin g value) {
        89           th is.value =  value;
        90       }
        91  
        92   }