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

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

3590.2 Comparison summary

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

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

3590.4 Active regular expressions

No regular expressions were active.

3590.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.XmlEnum ;
        5   import jav ax.xml.bin d.annotati on.XmlEnum Value;
        6   import jav ax.xml.bin d.annotati on.XmlType ;
        7  
        8  
        9   /**
        10    * <p>Java  class for  DecisionT ype.
        11    * 
        12    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
        13    * <p>
        14    * <pre>
        15    * &lt;sim pleType na me="Decisi onType">
        16    *   &lt;r estriction  base="{ht tp://www.w 3.org/2001 /XMLSchema }string">
        17    *     &lt ;enumerati on value=" Permit"/>
        18    *     &lt ;enumerati on value=" Deny"/>
        19    *     &lt ;enumerati on value=" Indetermin ate"/>
        20    *     &lt ;enumerati on value=" NotApplica ble"/>
        21    *   &lt;/ restrictio n>
        22    * &lt;/si mpleType>
        23    * </pre>
        24    * 
        25    */
        26   @XmlType(n ame = "Dec isionType" )
        27   @XmlEnum
        28   public enu m Decision Type {
        29  
        30       @XmlEn umValue("P ermit")
        31       PERMIT ("Permit") ,
        32       @XmlEn umValue("D eny")
        33       DENY(" Deny"),
        34       @XmlEn umValue("I ndetermina te")
        35       INDETE RMINATE("I ndetermina te"),
        36       @XmlEn umValue("N otApplicab le")
        37       NOT_AP PLICABLE(" NotApplica ble");
        38       privat e final St ring value ;
        39  
        40       Decisi onType(Str ing v) {
        41           va lue = v;
        42       }
        43  
        44       public  String va lue() {
        45           re turn value ;
        46       }
        47  
        48       public  static De cisionType  fromValue (String v)  {
        49           fo r (Decisio nType c: D ecisionTyp e.values() ) {
        50                if (c.va lue.equals (v)) {
        51                    retu rn c;
        52                }
        53           }
        54           th row new Il legalArgum entExcepti on(v);
        55       }
        56  
        57   }