3621. EPMO Open Source Coordination Office Redaction File Detail Report

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

3621.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:22 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 FunctionType.java Fri Apr 21 20:03:28 2017 UTC

3621.2 Comparison summary

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

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

3621.4 Active regular expressions

No regular expressions were active.

3621.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.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.XmlSche maType;
        8   import jav ax.xml.bin d.annotati on.XmlType ;
        9  
        10  
        11   /**
        12    * <p>Java  class for  FunctionT ype comple x type.
        13    * 
        14    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
        15    * 
        16    * <pre>
        17    * &lt;com plexType n ame="Funct ionType">
        18    *   &lt;c omplexCont ent>
        19    *     &lt ;extension  base="{ur n:oasis:na mes:tc:xac ml:2.0:pol icy:schema :os}Expres sionType">
        20    *       & lt;attribu te name="F unctionId"  use="requ ired" type ="{http:// www.w3.org /2001/XMLS chema}anyU RI" />
        21    *     &lt ;/extensio n>
        22    *   &lt;/ complexCon tent>
        23    * &lt;/co mplexType>
        24    * </pre>
        25    * 
        26    * 
        27    */
        28   @XmlAccess orType(Xml AccessType .FIELD)
        29   @XmlType(n ame = "Fun ctionType" )
        30   public cla ss Functio nType
        31       extend s Expressi onType
        32   {
        33  
        34       @XmlAt tribute(na me = "Func tionId", r equired =  true)
        35       @XmlSc hemaType(n ame = "any URI")
        36       protec ted String  functionI d;
        37  
        38       /**
        39        * Get s the valu e of the f unctionId  property.
        40        * 
        41        * @re turn
        42        *      possible  object is
        43        *      {@link St ring }
        44        *      
        45        */
        46       public  String ge tFunctionI d() {
        47           re turn funct ionId;
        48       }
        49  
        50       /**
        51        * Set s the valu e of the f unctionId  property.
        52        * 
        53        * @pa ram value
        54        *      allowed o bject is
        55        *      {@link St ring }
        56        *      
        57        */
        58       public  void setF unctionId( String val ue) {
        59           th is.functio nId = valu e;
        60       }
        61  
        62   }