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 | StatusType.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 | 118 |
| 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 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.XmlElem ent; | |||||
| 7 | import jav ax.xml.bin d.annotati on.XmlType ; | |||||
| 8 | ||||||
| 9 | ||||||
| 10 | /** | |||||
| 11 | * <p>Java class for StatusTyp e complex type. | |||||
| 12 | * | |||||
| 13 | * <p>The following schema fra gment spec ifies the expected c ontent con tained wit hin this c lass. | |||||
| 14 | * | |||||
| 15 | * <pre> | |||||
| 16 | * <com plexType n ame="Statu sType"> | |||||
| 17 | * <c omplexCont ent> | |||||
| 18 | * < ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "> | |||||
| 19 | * & lt;sequenc e> | |||||
| 20 | * <eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:co ntext:sche ma:os}Stat usCode"/> | |||||
| 21 | * <eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:co ntext:sche ma:os}Stat usMessage" minOccurs ="0"/> | |||||
| 22 | * <eleme nt ref="{u rn:oasis:n ames:tc:xa cml:2.0:co ntext:sche ma:os}Stat usDetail" minOccurs= "0"/> | |||||
| 23 | * & lt;/sequen ce> | |||||
| 24 | * < ;/restrict ion> | |||||
| 25 | * </ complexCon tent> | |||||
| 26 | * </co mplexType> | |||||
| 27 | * </pre> | |||||
| 28 | * | |||||
| 29 | * | |||||
| 30 | */ | |||||
| 31 | @XmlAccess orType(Xml AccessType .FIELD) | |||||
| 32 | @XmlType(n ame = "Sta tusType", propOrder = { | |||||
| 33 | "statu sCode", | |||||
| 34 | "statu sMessage", | |||||
| 35 | "statu sDetail" | |||||
| 36 | }) | |||||
| 37 | public cla ss StatusT ype { | |||||
| 38 | ||||||
| 39 | @XmlEl ement(name = "Status Code", req uired = tr ue) | |||||
| 40 | protec ted Status CodeType s tatusCode; | |||||
| 41 | @XmlEl ement(name = "Status Message") | |||||
| 42 | protec ted String statusMes sage; | |||||
| 43 | @XmlEl ement(name = "Status Detail") | |||||
| 44 | protec ted Status DetailType statusDet ail; | |||||
| 45 | ||||||
| 46 | /** | |||||
| 47 | * Get s the valu e of the s tatusCode property. | |||||
| 48 | * | |||||
| 49 | * @re turn | |||||
| 50 | * possible object is | |||||
| 51 | * {@link St atusCodeTy pe } | |||||
| 52 | * | |||||
| 53 | */ | |||||
| 54 | public StatusCod eType getS tatusCode( ) { | |||||
| 55 | re turn statu sCode; | |||||
| 56 | } | |||||
| 57 | ||||||
| 58 | /** | |||||
| 59 | * Set s the valu e of the s tatusCode property. | |||||
| 60 | * | |||||
| 61 | * @pa ram value | |||||
| 62 | * allowed o bject is | |||||
| 63 | * {@link St atusCodeTy pe } | |||||
| 64 | * | |||||
| 65 | */ | |||||
| 66 | public void setS tatusCode( StatusCode Type value ) { | |||||
| 67 | th is.statusC ode = valu e; | |||||
| 68 | } | |||||
| 69 | ||||||
| 70 | /** | |||||
| 71 | * Get s the valu e of the s tatusMessa ge propert y. | |||||
| 72 | * | |||||
| 73 | * @re turn | |||||
| 74 | * possible object is | |||||
| 75 | * {@link St ring } | |||||
| 76 | * | |||||
| 77 | */ | |||||
| 78 | public String ge tStatusMes sage() { | |||||
| 79 | re turn statu sMessage; | |||||
| 80 | } | |||||
| 81 | ||||||
| 82 | /** | |||||
| 83 | * Set s the valu e of the s tatusMessa ge propert y. | |||||
| 84 | * | |||||
| 85 | * @pa ram value | |||||
| 86 | * allowed o bject is | |||||
| 87 | * {@link St ring } | |||||
| 88 | * | |||||
| 89 | */ | |||||
| 90 | public void setS tatusMessa ge(String value) { | |||||
| 91 | th is.statusM essage = v alue; | |||||
| 92 | } | |||||
| 93 | ||||||
| 94 | /** | |||||
| 95 | * Get s the valu e of the s tatusDetai l property . | |||||
| 96 | * | |||||
| 97 | * @re turn | |||||
| 98 | * possible object is | |||||
| 99 | * {@link St atusDetail Type } | |||||
| 100 | * | |||||
| 101 | */ | |||||
| 102 | public StatusDet ailType ge tStatusDet ail() { | |||||
| 103 | re turn statu sDetail; | |||||
| 104 | } | |||||
| 105 | ||||||
| 106 | /** | |||||
| 107 | * Set s the valu e of the s tatusDetai l property . | |||||
| 108 | * | |||||
| 109 | * @pa ram value | |||||
| 110 | * allowed o bject is | |||||
| 111 | * {@link St atusDetail Type } | |||||
| 112 | * | |||||
| 113 | */ | |||||
| 114 | public void setS tatusDetai l(StatusDe tailType v alue) { | |||||
| 115 | th is.statusD etail = va lue; | |||||
| 116 | } | |||||
| 117 | ||||||
| 118 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.