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

3616.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\policy\schema\os EffectType.java Fri Apr 21 20:03:28 2017 UTC

3616.2 Comparison summary

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

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

3616.4 Active regular expressions

No regular expressions were active.

3616.5 Comparison detail

        1  
        2   package oa sis.names. tc.xacml._ 2_0.policy .schema.os ;
        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  EffectTyp e.
        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="Effect Type">
        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;/ restrictio n>
        20    * &lt;/si mpleType>
        21    * </pre>
        22    * 
        23    */
        24   @XmlType(n ame = "Eff ectType")
        25   @XmlEnum
        26   public enu m EffectTy pe {
        27  
        28       @XmlEn umValue("P ermit")
        29       PERMIT ("Permit") ,
        30       @XmlEn umValue("D eny")
        31       DENY(" Deny");
        32       privat e final St ring value ;
        33  
        34       Effect Type(Strin g v) {
        35           va lue = v;
        36       }
        37  
        38       public  String va lue() {
        39           re turn value ;
        40       }
        41  
        42       public  static Ef fectType f romValue(S tring v) {
        43           fo r (EffectT ype c: Eff ectType.va lues()) {
        44                if (c.va lue.equals (v)) {
        45                    retu rn c;
        46                }
        47           }
        48           th row new Il legalArgum entExcepti on(v);
        49       }
        50  
        51   }