Produced by Araxis Merge on 6/9/2017 3:50:19 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:19 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\gov\va\med\nhin\adapter\audit | ActionType.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 | 83 |
| 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.09.20 at 07:08:46 AM PDT | |||||
| 6 | // | |||||
| 7 | ||||||
| 8 | ||||||
| 9 | package go v.va.med.n hin.adapte r.audit; | |||||
| 10 | ||||||
| 11 | import jav ax.xml.bin d.annotati on.XmlEnum ; | |||||
| 12 | import jav ax.xml.bin d.annotati on.XmlEnum Value; | |||||
| 13 | ||||||
| 14 | ||||||
| 15 | /** | |||||
| 16 | * <p>Java class for ActionTyp e. | |||||
| 17 | * | |||||
| 18 | * <p>The following schema fra gment spec ifies the expected c ontent con tained wit hin this c lass. | |||||
| 19 | * <p> | |||||
| 20 | * <pre> | |||||
| 21 | * <sim pleType na me="Action Type"> | |||||
| 22 | * <r estriction base="{ht tp://www.w 3.org/2001 /XMLSchema }string"> | |||||
| 23 | * < ;enumerati on value=" Retrieve D ocument"/> | |||||
| 24 | * < ;enumerati on value=" RetrieveDo cumentOut" /> | |||||
| 25 | * < ;enumerati on value=" AddPatient Correlatio n"/> | |||||
| 26 | * < ;enumerati on value=" CPP OptOut "/> | |||||
| 27 | * < ;enumerati on value=" CPP Announ ce"/> | |||||
| 28 | * < ;enumerati on value=" Announce"/ > | |||||
| 29 | * < ;enumerati on value=" CheckPolic y"/> | |||||
| 30 | * < ;enumerati on value=" MPI findMa tch"/> | |||||
| 31 | * < ;enumerati on value=" CPP OptIn" /> | |||||
| 32 | * < ;enumerati on value=" CPP Login" /> | |||||
| 33 | * < ;enumerati on value=" CPP Revoke "/> | |||||
| 34 | * </ restrictio n> | |||||
| 35 | * </si mpleType> | |||||
| 36 | * </pre> | |||||
| 37 | * | |||||
| 38 | */ | |||||
| 39 | @XmlEnum | |||||
| 40 | public enu m ActionTy pe { | |||||
| 41 | ||||||
| 42 | @XmlEn umValue("R etrieve Do cument") | |||||
| 43 | RETRIE VE_DOCUMEN T("Retriev e Document "), | |||||
| 44 | @XmlEn umValue("R etrieveDoc umentOut") | |||||
| 45 | RETRIE VE_DOCUMEN T_OUT("Ret rieveDocum entOut"), | |||||
| 46 | @XmlEn umValue("A ddPatientC orrelation ") | |||||
| 47 | ADD_PA TIENT_CORR ELATION("A ddPatientC orrelation "), | |||||
| 48 | @XmlEn umValue("C PP OptOut" ) | |||||
| 49 | CPP_OP T_OUT("CPP OptOut"), | |||||
| 50 | @XmlEn umValue("C PP Announc e") | |||||
| 51 | CPP_AN NOUNCE("CP P Announce "), | |||||
| 52 | @XmlEn umValue("A nnounce") | |||||
| 53 | ANNOUN CE("Announ ce"), | |||||
| 54 | @XmlEn umValue("C heckPolicy ") | |||||
| 55 | CHECK_ POLICY("Ch eckPolicy" ), | |||||
| 56 | @XmlEn umValue("M PI findMat ch") | |||||
| 57 | MPI_FI ND_MATCH(" MPI findMa tch"), | |||||
| 58 | @XmlEn umValue("C PP OptIn") | |||||
| 59 | CPP_OP T_IN("CPP OptIn"), | |||||
| 60 | @XmlEn umValue("C PP Login") | |||||
| 61 | CPP_LO GIN("CPP L ogin"), | |||||
| 62 | @XmlEn umValue("C PP Revoke" ) | |||||
| 63 | CPP_RE VOKE("CPP Revoke"); | |||||
| 64 | privat e final St ring value ; | |||||
| 65 | ||||||
| 66 | Action Type(Strin g v) { | |||||
| 67 | va lue = v; | |||||
| 68 | } | |||||
| 69 | ||||||
| 70 | public String va lue() { | |||||
| 71 | re turn value ; | |||||
| 72 | } | |||||
| 73 | ||||||
| 74 | public static Ac tionType f romValue(S tring v) { | |||||
| 75 | fo r (ActionT ype c: Act ionType.va lues()) { | |||||
| 76 | if (c.va lue.equals (v)) { | |||||
| 77 | retu rn c; | |||||
| 78 | } | |||||
| 79 | } | |||||
| 80 | th row new Il legalArgum entExcepti on(v); | |||||
| 81 | } | |||||
| 82 | ||||||
| 83 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.