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

3597.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 ResourceType.java Fri Apr 21 20:03:28 2017 UTC

3597.2 Comparison summary

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

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

3597.4 Active regular expressions

No regular expressions were active.

3597.5 Comparison detail

        1  
        2   package oa sis.names. tc.xacml._ 2_0.contex t.schema.o s;
        3  
        4   import jav a.util.Arr ayList;
        5   import jav a.util.Lis t;
        6   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
        7   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
        8   import jav ax.xml.bin d.annotati on.XmlElem ent;
        9   import jav ax.xml.bin d.annotati on.XmlType ;
        10  
        11  
        12   /**
        13    * <p>Java  class for  ResourceT ype comple x 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="Resou rceType">
        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}Reso urceConten t" minOccu rs="0"/>
        23    *          &lt;eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:co ntext:sche ma:os}Attr ibute" max Occurs="un bounded" m inOccurs=" 0"/>
        24    *       & lt;/sequen ce>
        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 = "Res ourceType" , propOrde r = {
        34       "resou rceContent ",
        35       "attri bute"
        36   })
        37   public cla ss Resourc eType {
        38  
        39       @XmlEl ement(name  = "Resour ceContent" )
        40       protec ted Resour ceContentT ype resour ceContent;
        41       @XmlEl ement(name  = "Attrib ute")
        42       protec ted List<A ttributeTy pe> attrib ute;
        43  
        44       /**
        45        * Get s the valu e of the r esourceCon tent prope rty.
        46        * 
        47        * @re turn
        48        *      possible  object is
        49        *      {@link Re sourceCont entType }
        50        *      
        51        */
        52       public  ResourceC ontentType  getResour ceContent( ) {
        53           re turn resou rceContent ;
        54       }
        55  
        56       /**
        57        * Set s the valu e of the r esourceCon tent prope rty.
        58        * 
        59        * @pa ram value
        60        *      allowed o bject is
        61        *      {@link Re sourceCont entType }
        62        *      
        63        */
        64       public  void setR esourceCon tent(Resou rceContent Type value ) {
        65           th is.resourc eContent =  value;
        66       }
        67  
        68       /**
        69        * Get s the valu e of the a ttribute p roperty.
        70        * 
        71        * <p>
        72        * Thi s accessor  method re turns a re ference to  the live  list,
        73        * not  a snapsho t. Therefo re any mod ification  you make t o the
        74        * ret urned list  will be p resent ins ide the JA XB object.
        75        * Thi s is why t here is no t a <CODE> set</CODE>  method fo r the attr ibute prop erty.
        76        * 
        77        * <p>
        78        * For  example,  to add a n ew item, d o as follo ws:
        79        * <pr e>
        80        *     getAttribu te().add(n ewItem);
        81        * </p re>
        82        * 
        83        * 
        84        * <p>
        85        * Obj ects of th e followin g type(s)  are allowe d in the l ist
        86        * {@l ink Attrib uteType }
        87        * 
        88        * 
        89        */
        90       public  List<Attr ibuteType>  getAttrib ute() {
        91           if  (attribut e == null)  {
        92                attribut e = new Ar rayList<At tributeTyp e>();
        93           }
        94           re turn this. attribute;
        95       }
        96  
        97   }