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.
| # | 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 | RuleType.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 | 173 |
| 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.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.XmlElem ent; | |||||
| 8 | import jav ax.xml.bin d.annotati on.XmlType ; | |||||
| 9 | ||||||
| 10 | ||||||
| 11 | /** | |||||
| 12 | * <p>Java class for RuleType complex ty pe. | |||||
| 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 | * <com plexType n ame="RuleT ype"> | |||||
| 18 | * <c omplexCont ent> | |||||
| 19 | * < ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "> | |||||
| 20 | * & lt;sequenc e> | |||||
| 21 | * <eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:po licy:schem a:os}Descr iption" mi nOccurs="0 "/> | |||||
| 22 | * <eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:po licy:schem a:os}Targe t" minOccu rs="0"/> | |||||
| 23 | * <eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:po licy:schem a:os}Condi tion" minO ccurs="0"/ > | |||||
| 24 | * & lt;/sequen ce> | |||||
| 25 | * & lt;attribu te name="R uleId" use ="required " type="{h ttp://www. w3.org/200 1/XMLSchem a}string" /> | |||||
| 26 | * & lt;attribu te name="E ffect" use ="required " type="{u rn:oasis:n ames:tc:xa cml:2.0:po licy:schem a:os}Effec tType" /> | |||||
| 27 | * < ;/restrict ion> | |||||
| 28 | * </ complexCon tent> | |||||
| 29 | * </co mplexType> | |||||
| 30 | * </pre> | |||||
| 31 | * | |||||
| 32 | * | |||||
| 33 | */ | |||||
| 34 | @XmlAccess orType(Xml AccessType .FIELD) | |||||
| 35 | @XmlType(n ame = "Rul eType", pr opOrder = { | |||||
| 36 | "descr iption", | |||||
| 37 | "targe t", | |||||
| 38 | "condi tion" | |||||
| 39 | }) | |||||
| 40 | public cla ss RuleTyp e { | |||||
| 41 | ||||||
| 42 | @XmlEl ement(name = "Descri ption") | |||||
| 43 | protec ted String descripti on; | |||||
| 44 | @XmlEl ement(name = "Target ") | |||||
| 45 | protec ted Target Type targe t; | |||||
| 46 | @XmlEl ement(name = "Condit ion") | |||||
| 47 | protec ted Condit ionType co ndition; | |||||
| 48 | @XmlAt tribute(na me = "Rule Id", requi red = true ) | |||||
| 49 | protec ted String ruleId; | |||||
| 50 | @XmlAt tribute(na me = "Effe ct", requi red = true ) | |||||
| 51 | protec ted Effect Type effec t; | |||||
| 52 | ||||||
| 53 | /** | |||||
| 54 | * Get s the valu e of the d escription property. | |||||
| 55 | * | |||||
| 56 | * @re turn | |||||
| 57 | * possible object is | |||||
| 58 | * {@link St ring } | |||||
| 59 | * | |||||
| 60 | */ | |||||
| 61 | public String ge tDescripti on() { | |||||
| 62 | re turn descr iption; | |||||
| 63 | } | |||||
| 64 | ||||||
| 65 | /** | |||||
| 66 | * Set s the valu e of the d escription property. | |||||
| 67 | * | |||||
| 68 | * @pa ram value | |||||
| 69 | * allowed o bject is | |||||
| 70 | * {@link St ring } | |||||
| 71 | * | |||||
| 72 | */ | |||||
| 73 | public void setD escription (String va lue) { | |||||
| 74 | th is.descrip tion = val ue; | |||||
| 75 | } | |||||
| 76 | ||||||
| 77 | /** | |||||
| 78 | * Get s the valu e of the t arget prop erty. | |||||
| 79 | * | |||||
| 80 | * @re turn | |||||
| 81 | * possible object is | |||||
| 82 | * {@link Ta rgetType } | |||||
| 83 | * | |||||
| 84 | */ | |||||
| 85 | public TargetTyp e getTarge t() { | |||||
| 86 | re turn targe t; | |||||
| 87 | } | |||||
| 88 | ||||||
| 89 | /** | |||||
| 90 | * Set s the valu e of the t arget prop erty. | |||||
| 91 | * | |||||
| 92 | * @pa ram value | |||||
| 93 | * allowed o bject is | |||||
| 94 | * {@link Ta rgetType } | |||||
| 95 | * | |||||
| 96 | */ | |||||
| 97 | public void setT arget(Targ etType val ue) { | |||||
| 98 | th is.target = value; | |||||
| 99 | } | |||||
| 100 | ||||||
| 101 | /** | |||||
| 102 | * Get s the valu e of the c ondition p roperty. | |||||
| 103 | * | |||||
| 104 | * @re turn | |||||
| 105 | * possible object is | |||||
| 106 | * {@link Co nditionTyp e } | |||||
| 107 | * | |||||
| 108 | */ | |||||
| 109 | public Condition Type getCo ndition() { | |||||
| 110 | re turn condi tion; | |||||
| 111 | } | |||||
| 112 | ||||||
| 113 | /** | |||||
| 114 | * Set s the valu e of the c ondition p roperty. | |||||
| 115 | * | |||||
| 116 | * @pa ram value | |||||
| 117 | * allowed o bject is | |||||
| 118 | * {@link Co nditionTyp e } | |||||
| 119 | * | |||||
| 120 | */ | |||||
| 121 | public void setC ondition(C onditionTy pe value) { | |||||
| 122 | th is.conditi on = value ; | |||||
| 123 | } | |||||
| 124 | ||||||
| 125 | /** | |||||
| 126 | * Get s the valu e of the r uleId prop erty. | |||||
| 127 | * | |||||
| 128 | * @re turn | |||||
| 129 | * possible object is | |||||
| 130 | * {@link St ring } | |||||
| 131 | * | |||||
| 132 | */ | |||||
| 133 | public String ge tRuleId() { | |||||
| 134 | re turn ruleI d; | |||||
| 135 | } | |||||
| 136 | ||||||
| 137 | /** | |||||
| 138 | * Set s the valu e of the r uleId prop erty. | |||||
| 139 | * | |||||
| 140 | * @pa ram value | |||||
| 141 | * allowed o bject is | |||||
| 142 | * {@link St ring } | |||||
| 143 | * | |||||
| 144 | */ | |||||
| 145 | public void setR uleId(Stri ng value) { | |||||
| 146 | th is.ruleId = value; | |||||
| 147 | } | |||||
| 148 | ||||||
| 149 | /** | |||||
| 150 | * Get s the valu e of the e ffect prop erty. | |||||
| 151 | * | |||||
| 152 | * @re turn | |||||
| 153 | * possible object is | |||||
| 154 | * {@link Ef fectType } | |||||
| 155 | * | |||||
| 156 | */ | |||||
| 157 | public EffectTyp e getEffec t() { | |||||
| 158 | re turn effec t; | |||||
| 159 | } | |||||
| 160 | ||||||
| 161 | /** | |||||
| 162 | * Set s the valu e of the e ffect prop erty. | |||||
| 163 | * | |||||
| 164 | * @pa ram value | |||||
| 165 | * allowed o bject is | |||||
| 166 | * {@link Ef fectType } | |||||
| 167 | * | |||||
| 168 | */ | |||||
| 169 | public void setE ffect(Effe ctType val ue) { | |||||
| 170 | th is.effect = value; | |||||
| 171 | } | |||||
| 172 | ||||||
| 173 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.