Produced by Araxis Merge on 6/9/2017 3:49:49 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:49:49 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-client\src\main\java\gov\va\nvap\service\pdq | Facility.java | Fri Apr 21 20:03:26 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 0 | 0 |
| Changed | 0 | 0 |
| Inserted | 1 | 172 |
| 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 | // This fi le was gen erated by the JavaTM Architect ure for XM L Binding( JAXB) Refe rence Impl ementation , v2.1-b02 -fcs | |||||
| 3 | // See <a href="http ://java.su n.com/xml/ jaxb">http ://java.su n.com/xml/ jaxb</a> | |||||
| 4 | // Any mod ifications to this f ile will b e lost upo n recompil ation of t he source schema. | |||||
| 5 | // Generat ed on: 201 1.06.18 at 07:32:30 PM PDT | |||||
| 6 | // | |||||
| 7 | ||||||
| 8 | package go v.va.nvap. service.pd q; | |||||
| 9 | ||||||
| 10 | import jav ax.xml.bin d.annotati on.XmlAcce ssType; | |||||
| 11 | import jav ax.xml.bin d.annotati on.XmlAcce ssorType; | |||||
| 12 | import jav ax.xml.bin d.annotati on.XmlElem ent; | |||||
| 13 | import jav ax.xml.bin d.annotati on.XmlType ; | |||||
| 14 | ||||||
| 15 | /** | |||||
| 16 | * <p> | |||||
| 17 | * Java cl ass for fa cility com plex type. | |||||
| 18 | * <p> | |||||
| 19 | * The fol lowing sch ema fragme nt specifi es the exp ected cont ent contai ned within | |||||
| 20 | * this cl ass. | |||||
| 21 | * | |||||
| 22 | * <pre> | |||||
| 23 | * <com plexType n ame="facil ity"> | |||||
| 24 | * <c omplexCont ent> | |||||
| 25 | * < ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "> | |||||
| 26 | * & lt;sequenc e> | |||||
| 27 | * <eleme nt name="f acility-id " type="{h ttp://www. w3.org/200 1/XMLSchem a}string"/ > | |||||
| 28 | * <eleme nt name="c orrelated- patient-id " type="{h ttp://www. w3.org/200 1/XMLSchem a}string"/ > | |||||
| 29 | * <eleme nt name="a ssigning-a uthority-n ame" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g"/> | |||||
| 30 | * <eleme nt name="a ssigning-a uthority-n umber" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing"/> | |||||
| 31 | * <eleme nt name="f acility-nu mber" type ="{http:// www.w3.org /2001/XMLS chema}stri ng"/> | |||||
| 32 | * <eleme nt name="f acility-na me" type=" {http://ww w.w3.org/2 001/XMLSch ema}string "/> | |||||
| 33 | * & lt;/sequen ce> | |||||
| 34 | * < ;/restrict ion> | |||||
| 35 | * </ complexCon tent> | |||||
| 36 | * </co mplexType> | |||||
| 37 | * </pre> | |||||
| 38 | */ | |||||
| 39 | @XmlAccess orType(Xml AccessType .FIELD) | |||||
| 40 | @XmlType(n ame = "fac ility", pr opOrder = { "facilit yId", "cor relatedPat ientId", | |||||
| 41 | "ass igningAuth orityName" , "assigni ngAuthorit yNumber", "facilityN umber", | |||||
| 42 | "fac ilityName" }) | |||||
| 43 | public cla ss Facilit y { | |||||
| 44 | ||||||
| 45 | @X mlElement( name = "as signing-au thority-na me", requi red = true ) | |||||
| 46 | pr otected St ring assig ningAuthor ityName; | |||||
| 47 | @X mlElement( name = "as signing-au thority-nu mber", req uired = tr ue) | |||||
| 48 | pr otected St ring assig ningAuthor ityNumber; | |||||
| 49 | @X mlElement( name = "co rrelated-p atient-id" , required = true) | |||||
| 50 | pr otected St ring corre latedPatie ntId; | |||||
| 51 | @X mlElement( name = "fa cility-id" , required = true) | |||||
| 52 | pr otected St ring facil ityId; | |||||
| 53 | @X mlElement( name = "fa cility-nam e", requir ed = true) | |||||
| 54 | pr otected St ring facil ityName; | |||||
| 55 | @X mlElement( name = "fa cility-num ber", requ ired = tru e) | |||||
| 56 | pr otected St ring facil ityNumber; | |||||
| 57 | ||||||
| 58 | /* * | |||||
| 59 | * Gets the value of t he assigni ngAuthorit yName prop erty. | |||||
| 60 | * | |||||
| 61 | * @return p ossible ob ject is {@ link Strin g } | |||||
| 62 | * / | |||||
| 63 | pu blic Strin g getAssig ningAuthor ityName() { | |||||
| 64 | retu rn this.as signingAut horityName ; | |||||
| 65 | } | |||||
| 66 | ||||||
| 67 | /* * | |||||
| 68 | * Gets the value of t he assigni ngAuthorit yNumber pr operty. | |||||
| 69 | * | |||||
| 70 | * @return p ossible ob ject is {@ link Strin g } | |||||
| 71 | * / | |||||
| 72 | pu blic Strin g getAssig ningAuthor ityNumber( ) { | |||||
| 73 | retu rn this.as signingAut horityNumb er; | |||||
| 74 | } | |||||
| 75 | ||||||
| 76 | /* * | |||||
| 77 | * Gets the value of t he correla tedPatient Id propert y. | |||||
| 78 | * | |||||
| 79 | * @return p ossible ob ject is {@ link Strin g } | |||||
| 80 | * / | |||||
| 81 | pu blic Strin g getCorre latedPatie ntId() { | |||||
| 82 | retu rn this.co rrelatedPa tientId; | |||||
| 83 | } | |||||
| 84 | ||||||
| 85 | /* * | |||||
| 86 | * Gets the value of t he facilit yId proper ty. | |||||
| 87 | * | |||||
| 88 | * @return p ossible ob ject is {@ link Strin g } | |||||
| 89 | * / | |||||
| 90 | pu blic Strin g getFacil ityId() { | |||||
| 91 | retu rn this.fa cilityId; | |||||
| 92 | } | |||||
| 93 | ||||||
| 94 | /* * | |||||
| 95 | * Gets the value of t he facilit yName prop erty. | |||||
| 96 | * | |||||
| 97 | * @return p ossible ob ject is {@ link Strin g } | |||||
| 98 | * / | |||||
| 99 | pu blic Strin g getFacil ityName() { | |||||
| 100 | retu rn this.fa cilityName ; | |||||
| 101 | } | |||||
| 102 | ||||||
| 103 | /* * | |||||
| 104 | * Gets the value of t he facilit yNumber pr operty. | |||||
| 105 | * | |||||
| 106 | * @return p ossible ob ject is {@ link Strin g } | |||||
| 107 | * / | |||||
| 108 | pu blic Strin g getFacil ityNumber( ) { | |||||
| 109 | retu rn this.fa cilityNumb er; | |||||
| 110 | } | |||||
| 111 | ||||||
| 112 | /* * | |||||
| 113 | * Sets the value of t he assigni ngAuthorit yName prop erty. | |||||
| 114 | * | |||||
| 115 | * @param va lue | |||||
| 116 | * allowed object is {@link Str ing } | |||||
| 117 | * / | |||||
| 118 | pu blic void setAssigni ngAuthorit yName(fina l String v alue) { | |||||
| 119 | this .assigning AuthorityN ame = valu e; | |||||
| 120 | } | |||||
| 121 | ||||||
| 122 | /* * | |||||
| 123 | * Sets the value of t he assigni ngAuthorit yNumber pr operty. | |||||
| 124 | * | |||||
| 125 | * @param va lue | |||||
| 126 | * allowed object is {@link Str ing } | |||||
| 127 | * / | |||||
| 128 | pu blic void setAssigni ngAuthorit yNumber(fi nal String value) { | |||||
| 129 | this .assigning AuthorityN umber = va lue; | |||||
| 130 | } | |||||
| 131 | ||||||
| 132 | /* * | |||||
| 133 | * Sets the value of t he correla tedPatient Id propert y. | |||||
| 134 | * | |||||
| 135 | * @param va lue | |||||
| 136 | * allowed object is {@link Str ing } | |||||
| 137 | * / | |||||
| 138 | pu blic void setCorrela tedPatient Id(final S tring valu e) { | |||||
| 139 | this .correlate dPatientId = value; | |||||
| 140 | } | |||||
| 141 | ||||||
| 142 | /* * | |||||
| 143 | * Sets the value of t he facilit yId proper ty. | |||||
| 144 | * | |||||
| 145 | * @param va lue | |||||
| 146 | * allowed object is {@link Str ing } | |||||
| 147 | * / | |||||
| 148 | pu blic void setFacilit yId(final String val ue) { | |||||
| 149 | this .facilityI d = value; | |||||
| 150 | } | |||||
| 151 | ||||||
| 152 | /* * | |||||
| 153 | * Sets the value of t he facilit yName prop erty. | |||||
| 154 | * | |||||
| 155 | * @param va lue | |||||
| 156 | * allowed object is {@link Str ing } | |||||
| 157 | * / | |||||
| 158 | pu blic void setFacilit yName(fina l String v alue) { | |||||
| 159 | this .facilityN ame = valu e; | |||||
| 160 | } | |||||
| 161 | ||||||
| 162 | /* * | |||||
| 163 | * Sets the value of t he facilit yNumber pr operty. | |||||
| 164 | * | |||||
| 165 | * @param va lue | |||||
| 166 | * allowed object is {@link Str ing } | |||||
| 167 | * / | |||||
| 168 | pu blic void setFacilit yNumber(fi nal String value) { | |||||
| 169 | this .facilityN umber = va lue; | |||||
| 170 | } | |||||
| 171 | ||||||
| 172 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.