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.
| # | 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 | RequestType.java | Fri Apr 21 20:03:28 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 0 | 0 |
| Changed | 0 | 0 |
| Inserted | 1 | 158 |
| Removed | 0 | 0 |
| 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 |
No regular expressions were active.
| 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 RequestTy pe complex 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 | * <com plexType n ame="Reque stType"> | |||||
| 19 | * <c omplexCont ent> | |||||
| 20 | * < ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "> | |||||
| 21 | * & lt;sequenc e> | |||||
| 22 | * <eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:co ntext:sche ma:os}Subj ect" maxOc curs="unbo unded"/> | |||||
| 23 | * <eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:co ntext:sche ma:os}Reso urce" maxO ccurs="unb ounded"/> | |||||
| 24 | * <eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:co ntext:sche ma:os}Acti on"/> | |||||
| 25 | * <eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:co ntext:sche ma:os}Envi ronment"/> | |||||
| 26 | * & lt;/sequen ce> | |||||
| 27 | * < ;/restrict ion> | |||||
| 28 | * </ complexCon tent> | |||||
| 29 | * </co mplexType> | |||||
| 30 | * </pre> | |||||
| 31 | * | |||||
| 32 | * | |||||
| 33 | */ | |||||
| 34 | @XmlAccess orType(Xml AccessType .FIELD) | |||||
| 35 | @XmlType(n ame = "Req uestType", propOrder = { | |||||
| 36 | "subje ct", | |||||
| 37 | "resou rce", | |||||
| 38 | "actio n", | |||||
| 39 | "envir onment" | |||||
| 40 | }) | |||||
| 41 | public cla ss Request Type { | |||||
| 42 | ||||||
| 43 | @XmlEl ement(name = "Subjec t", requir ed = true) | |||||
| 44 | protec ted List<S ubjectType > subject; | |||||
| 45 | @XmlEl ement(name = "Resour ce", requi red = true ) | |||||
| 46 | protec ted List<R esourceTyp e> resourc e; | |||||
| 47 | @XmlEl ement(name = "Action ", require d = true) | |||||
| 48 | protec ted Action Type actio n; | |||||
| 49 | @XmlEl ement(name = "Enviro nment", re quired = t rue) | |||||
| 50 | protec ted Enviro nmentType environmen t; | |||||
| 51 | ||||||
| 52 | /** | |||||
| 53 | * Get s the valu e of the s ubject pro perty. | |||||
| 54 | * | |||||
| 55 | * <p> | |||||
| 56 | * Thi s accessor method re turns a re ference to the live list, | |||||
| 57 | * not a snapsho t. Therefo re any mod ification you make t o the | |||||
| 58 | * ret urned list will be p resent ins ide the JA XB object. | |||||
| 59 | * Thi s is why t here is no t a <CODE> set</CODE> method fo r the subj ect proper ty. | |||||
| 60 | * | |||||
| 61 | * <p> | |||||
| 62 | * For example, to add a n ew item, d o as follo ws: | |||||
| 63 | * <pr e> | |||||
| 64 | * getSubject ().add(new Item); | |||||
| 65 | * </p re> | |||||
| 66 | * | |||||
| 67 | * | |||||
| 68 | * <p> | |||||
| 69 | * Obj ects of th e followin g type(s) are allowe d in the l ist | |||||
| 70 | * {@l ink Subjec tType } | |||||
| 71 | * | |||||
| 72 | * | |||||
| 73 | */ | |||||
| 74 | public List<Subj ectType> g etSubject( ) { | |||||
| 75 | if (subject == null) { | |||||
| 76 | subject = new Arra yList<Subj ectType>() ; | |||||
| 77 | } | |||||
| 78 | re turn this. subject; | |||||
| 79 | } | |||||
| 80 | ||||||
| 81 | /** | |||||
| 82 | * Get s the valu e of the r esource pr operty. | |||||
| 83 | * | |||||
| 84 | * <p> | |||||
| 85 | * Thi s accessor method re turns a re ference to the live list, | |||||
| 86 | * not a snapsho t. Therefo re any mod ification you make t o the | |||||
| 87 | * ret urned list will be p resent ins ide the JA XB object. | |||||
| 88 | * Thi s is why t here is no t a <CODE> set</CODE> method fo r the reso urce prope rty. | |||||
| 89 | * | |||||
| 90 | * <p> | |||||
| 91 | * For example, to add a n ew item, d o as follo ws: | |||||
| 92 | * <pr e> | |||||
| 93 | * getResourc e().add(ne wItem); | |||||
| 94 | * </p re> | |||||
| 95 | * | |||||
| 96 | * | |||||
| 97 | * <p> | |||||
| 98 | * Obj ects of th e followin g type(s) are allowe d in the l ist | |||||
| 99 | * {@l ink Resour ceType } | |||||
| 100 | * | |||||
| 101 | * | |||||
| 102 | */ | |||||
| 103 | public List<Reso urceType> getResourc e() { | |||||
| 104 | if (resource == null) { | |||||
| 105 | resource = new Arr ayList<Res ourceType> (); | |||||
| 106 | } | |||||
| 107 | re turn this. resource; | |||||
| 108 | } | |||||
| 109 | ||||||
| 110 | /** | |||||
| 111 | * Get s the valu e of the a ction prop erty. | |||||
| 112 | * | |||||
| 113 | * @re turn | |||||
| 114 | * possible object is | |||||
| 115 | * {@link Ac tionType } | |||||
| 116 | * | |||||
| 117 | */ | |||||
| 118 | public ActionTyp e getActio n() { | |||||
| 119 | re turn actio n; | |||||
| 120 | } | |||||
| 121 | ||||||
| 122 | /** | |||||
| 123 | * Set s the valu e of the a ction prop erty. | |||||
| 124 | * | |||||
| 125 | * @pa ram value | |||||
| 126 | * allowed o bject is | |||||
| 127 | * {@link Ac tionType } | |||||
| 128 | * | |||||
| 129 | */ | |||||
| 130 | public void setA ction(Acti onType val ue) { | |||||
| 131 | th is.action = value; | |||||
| 132 | } | |||||
| 133 | ||||||
| 134 | /** | |||||
| 135 | * Get s the valu e of the e nvironment property. | |||||
| 136 | * | |||||
| 137 | * @re turn | |||||
| 138 | * possible object is | |||||
| 139 | * {@link En vironmentT ype } | |||||
| 140 | * | |||||
| 141 | */ | |||||
| 142 | public Environme ntType get Environmen t() { | |||||
| 143 | re turn envir onment; | |||||
| 144 | } | |||||
| 145 | ||||||
| 146 | /** | |||||
| 147 | * Set s the valu e of the e nvironment property. | |||||
| 148 | * | |||||
| 149 | * @pa ram value | |||||
| 150 | * allowed o bject is | |||||
| 151 | * {@link En vironmentT ype } | |||||
| 152 | * | |||||
| 153 | */ | |||||
| 154 | public void setE nvironment (Environme ntType val ue) { | |||||
| 155 | th is.environ ment = val ue; | |||||
| 156 | } | |||||
| 157 | ||||||
| 158 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.