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

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

3588.2 Comparison summary

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

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

3588.4 Active regular expressions

No regular expressions were active.

3588.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.XmlAttr ibute;
        9   import jav ax.xml.bin d.annotati on.XmlElem ent;
        10   import jav ax.xml.bin d.annotati on.XmlSche maType;
        11   import jav ax.xml.bin d.annotati on.XmlType ;
        12  
        13  
        14   /**
        15    * <p>Java  class for  Attribute Type compl ex type.
        16    * 
        17    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
        18    * 
        19    * <pre>
        20    * &lt;com plexType n ame="Attri buteType">
        21    *   &lt;c omplexCont ent>
        22    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
        23    *       & lt;sequenc e>
        24    *          &lt;eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:co ntext:sche ma:os}Attr ibuteValue " maxOccur s="unbound ed"/>
        25    *       & lt;/sequen ce>
        26    *       & lt;attribu te name="A ttributeId " use="req uired" typ e="{http:/ /www.w3.or g/2001/XML Schema}any URI" />
        27    *       & lt;attribu te name="D ataType" u se="requir ed" type=" {http://ww w.w3.org/2 001/XMLSch ema}anyURI " />
        28    *       & lt;attribu te name="I ssuer" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" />
        29    *     &lt ;/restrict ion>
        30    *   &lt;/ complexCon tent>
        31    * &lt;/co mplexType>
        32    * </pre>
        33    * 
        34    * 
        35    */
        36   @XmlAccess orType(Xml AccessType .FIELD)
        37   @XmlType(n ame = "Att ributeType ", propOrd er = {
        38       "attri buteValue"
        39   })
        40   public cla ss Attribu teType {
        41  
        42       @XmlEl ement(name  = "Attrib uteValue",  required  = true)
        43       protec ted List<A ttributeVa lueType> a ttributeVa lue;
        44       @XmlAt tribute(na me = "Attr ibuteId",  required =  true)
        45       @XmlSc hemaType(n ame = "any URI")
        46       protec ted String  attribute Id;
        47       @XmlAt tribute(na me = "Data Type", req uired = tr ue)
        48       @XmlSc hemaType(n ame = "any URI")
        49       protec ted String  dataType;
        50       @XmlAt tribute(na me = "Issu er")
        51       protec ted String  issuer;
        52  
        53       /**
        54        * Get s the valu e of the a ttributeVa lue proper ty.
        55        * 
        56        * <p>
        57        * Thi s accessor  method re turns a re ference to  the live  list,
        58        * not  a snapsho t. Therefo re any mod ification  you make t o the
        59        * ret urned list  will be p resent ins ide the JA XB object.
        60        * Thi s is why t here is no t a <CODE> set</CODE>  method fo r the attr ibuteValue  property.
        61        * 
        62        * <p>
        63        * For  example,  to add a n ew item, d o as follo ws:
        64        * <pr e>
        65        *     getAttribu teValue(). add(newIte m);
        66        * </p re>
        67        * 
        68        * 
        69        * <p>
        70        * Obj ects of th e followin g type(s)  are allowe d in the l ist
        71        * {@l ink Attrib uteValueTy pe }
        72        * 
        73        * 
        74        */
        75       public  List<Attr ibuteValue Type> getA ttributeVa lue() {
        76           if  (attribut eValue ==  null) {
        77                attribut eValue = n ew ArrayLi st<Attribu teValueTyp e>();
        78           }
        79           re turn this. attributeV alue;
        80       }
        81  
        82       /**
        83        * Get s the valu e of the a ttributeId  property.
        84        * 
        85        * @re turn
        86        *      possible  object is
        87        *      {@link St ring }
        88        *      
        89        */
        90       public  String ge tAttribute Id() {
        91           re turn attri buteId;
        92       }
        93  
        94       /**
        95        * Set s the valu e of the a ttributeId  property.
        96        * 
        97        * @pa ram value
        98        *      allowed o bject is
        99        *      {@link St ring }
        100        *      
        101        */
        102       public  void setA ttributeId (String va lue) {
        103           th is.attribu teId = val ue;
        104       }
        105  
        106       /**
        107        * Get s the valu e of the d ataType pr operty.
        108        * 
        109        * @re turn
        110        *      possible  object is
        111        *      {@link St ring }
        112        *      
        113        */
        114       public  String ge tDataType( ) {
        115           re turn dataT ype;
        116       }
        117  
        118       /**
        119        * Set s the valu e of the d ataType pr operty.
        120        * 
        121        * @pa ram value
        122        *      allowed o bject is
        123        *      {@link St ring }
        124        *      
        125        */
        126       public  void setD ataType(St ring value ) {
        127           th is.dataTyp e = value;
        128       }
        129  
        130       /**
        131        * Get s the valu e of the i ssuer prop erty.
        132        * 
        133        * @re turn
        134        *      possible  object is
        135        *      {@link St ring }
        136        *      
        137        */
        138       public  String ge tIssuer()  {
        139           re turn issue r;
        140       }
        141  
        142       /**
        143        * Set s the valu e of the i ssuer prop erty.
        144        * 
        145        * @pa ram value
        146        *      allowed o bject is
        147        *      {@link St ring }
        148        *      
        149        */
        150       public  void setI ssuer(Stri ng value)  {
        151           th is.issuer  = value;
        152       }
        153  
        154   }