Produced by Araxis Merge on 3/24/2017 5:17:18 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 | MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_rxrefill\mhv-rx-refill-portal-main\src\main\java\gov\va\med\domain\persistence\jdbc\helper | EndpointEntry.java | Thu Feb 11 17:10:26 2016 UTC |
| 2 | MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_rxrefill\mhv-rx-refill-portal-main\src\main\java\gov\va\med\domain\persistence\jdbc\helper | EndpointEntry.java | Fri Mar 24 20:31:31 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 396 |
| Changed | 1 | 2 |
| Inserted | 0 | 0 |
| 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 | package go v.va.med.d omain.pers istence.jd bc.helper; | |
| 2 | ||
| 3 | import gov .va.med.do main.servi ce.messagi ng.environ ment.Desti nation; | |
| 4 | import gov .va.med.do main.servi ce.messagi ng.environ ment.EndPo int; | |
| 5 | ||
| 6 | /** | |
| 7 | * Endpoin tEntry | |
| 8 | * | |
| 9 | * @author
|
|
| 10 | * @versio n $Id: End pointEntry .java,v 1. 6 2005/08/ 03 20:18:0 8 joel.gol dberg Exp $ | |
| 11 | * @since MHV 2.0 <b r>Mar 1, 2 005 | |
| 12 | */ | |
| 13 | public cla ss Endpoin tEntry { | |
| 14 | pr ivate long destinati onId; | |
| 15 | pr ivate long endpointI d; | |
| 16 | pr ivate Stri ng protoco lType; | |
| 17 | pr ivate Stri ng encodin gType; | |
| 18 | pr ivate Stri ng transce iver; | |
| 19 | pr ivate long functionI d; | |
| 20 | pr ivate Stri ng functio nName; | |
| 21 | pr ivate Stri ng encoder ; | |
| 22 | pr ivate Stri ng decoder ; | |
| 23 | pr ivate Stri ng asyncDe coder; | |
| 24 | pr ivate Stri ng handler ; | |
| 25 | pr ivate Stri ng aaEncod er; | |
| 26 | pr ivate Stri ng categor y; | |
| 27 | ||
| 28 | pu blic Strin g getAaEnc oder() { | |
| 29 | retu rn aaEncod er; | |
| 30 | } | |
| 31 | ||
| 32 | pu blic void setAaEncod er(String aaEncoder) { | |
| 33 | this .aaEncoder = aaEncod er; | |
| 34 | } | |
| 35 | ||
| 36 | pu blic Strin g getAsync Decoder() { | |
| 37 | retu rn asyncDe coder; | |
| 38 | } | |
| 39 | ||
| 40 | pu blic void setAsyncDe coder(Stri ng asyncDe coder) { | |
| 41 | this .asyncDeco der = asyn cDecoder; | |
| 42 | } | |
| 43 | ||
| 44 | pu blic Strin g getCateg ory() { | |
| 45 | retu rn categor y; | |
| 46 | } | |
| 47 | ||
| 48 | pu blic void setCategor y(String c ategory) { | |
| 49 | this .category = category ; | |
| 50 | } | |
| 51 | ||
| 52 | pu blic Strin g getHandl er() { | |
| 53 | retu rn handler ; | |
| 54 | } | |
| 55 | ||
| 56 | pu blic void setHandler (String ha ndler) { | |
| 57 | this .handler = handler; | |
| 58 | } | |
| 59 | ||
| 60 | /* * | |
| 61 | * Extracts columns/fi eld from t his row an d creates an | |
| 62 | * EndPoint. | |
| 63 | * @param de stination | |
| 64 | * / | |
| 65 | pu blic EndPo int buildE ndpoint(De stination destinatio n) { | |
| 66 | EndP oint endpo int = new EndPoint(d estination ); | |
| 67 | endp oint.setEn dpointId(t his.getEnd pointId()) ; | |
| 68 | endp oint.setEn codingType (this.getE ncodingTyp e()); | |
| 69 | endp oint.setPr otocolType (this.getP rotocolTyp e()); | |
| 70 | endp oint.setTr ansceiver( this.getTr ansceiver( )); | |
| 71 | retu rn endpoin t; | |
| 72 | } | |
| 73 | ||
| 74 | /* * | |
| 75 | * @return R eturns the decoder. | |
| 76 | * / | |
| 77 | pu blic Strin g getDecod er() { | |
| 78 | retu rn decoder ; | |
| 79 | } | |
| 80 | ||
| 81 | /* * | |
| 82 | * @param de coder The decoder to set. | |
| 83 | * / | |
| 84 | pu blic void setDecoder (String de coder) { | |
| 85 | this .decoder = decoder; | |
| 86 | } | |
| 87 | ||
| 88 | /* * | |
| 89 | * @return R eturns the destinati onId. | |
| 90 | * / | |
| 91 | pu blic long getDestina tionId() { | |
| 92 | retu rn destina tionId; | |
| 93 | } | |
| 94 | ||
| 95 | /* * | |
| 96 | * @param de stinationI d The dest inationId to set. | |
| 97 | * / | |
| 98 | pu blic void setDestina tionId(lon g destinat ionId) { | |
| 99 | this .destinati onId = des tinationId ; | |
| 100 | } | |
| 101 | ||
| 102 | /* * | |
| 103 | * @return R eturns the encoder. | |
| 104 | * / | |
| 105 | pu blic Strin g getEncod er() { | |
| 106 | retu rn encoder ; | |
| 107 | } | |
| 108 | ||
| 109 | /* * | |
| 110 | * @param en coder The encoder to set. | |
| 111 | * / | |
| 112 | pu blic void setEncoder (String en coder) { | |
| 113 | this .encoder = encoder; | |
| 114 | } | |
| 115 | ||
| 116 | /* * | |
| 117 | * @return R eturns the endpointI d. | |
| 118 | * / | |
| 119 | pu blic long getEndpoin tId() { | |
| 120 | retu rn endpoin tId; | |
| 121 | } | |
| 122 | ||
| 123 | /* * | |
| 124 | * @param en dpointId T he endpoin tId to set . | |
| 125 | * / | |
| 126 | pu blic void setEndpoin tId(long e ndpointId) { | |
| 127 | this .endpointI d = endpoi ntId; | |
| 128 | } | |
| 129 | ||
| 130 | /* * | |
| 131 | * @return R eturns the functionN ame. | |
| 132 | * / | |
| 133 | pu blic Strin g getFunct ionName() { | |
| 134 | retu rn functio nName; | |
| 135 | } | |
| 136 | ||
| 137 | /* * | |
| 138 | * @param fu nctionName The funct ionName to set. | |
| 139 | * / | |
| 140 | pu blic void setFunctio nName(Stri ng functio nName) { | |
| 141 | this .functionN ame = func tionName; | |
| 142 | } | |
| 143 | ||
| 144 | /* * | |
| 145 | * @return R eturns the encodingT ype. | |
| 146 | * / | |
| 147 | pu blic Strin g getEncod ingType() { | |
| 148 | retu rn encodin gType; | |
| 149 | } | |
| 150 | ||
| 151 | /* * | |
| 152 | * @param en codingType The encod ingType to set. | |
| 153 | * / | |
| 154 | pu blic void setEncodin gType(Stri ng encodin gType) { | |
| 155 | this .encodingT ype = enco dingType; | |
| 156 | } | |
| 157 | ||
| 158 | /* * | |
| 159 | * @return R eturns the functionI d. | |
| 160 | * / | |
| 161 | pu blic long getFunctio nId() { | |
| 162 | retu rn functio nId; | |
| 163 | } | |
| 164 | ||
| 165 | /* * | |
| 166 | * @param fu nctionId T he functio nId to set . | |
| 167 | * / | |
| 168 | pu blic void setFunctio nId(long f unctionId) { | |
| 169 | this .functionI d = functi onId; | |
| 170 | } | |
| 171 | ||
| 172 | /* * | |
| 173 | * @return R eturns the protocolT ype. | |
| 174 | * / | |
| 175 | pu blic Strin g getProto colType() { | |
| 176 | retu rn protoco lType; | |
| 177 | } | |
| 178 | ||
| 179 | /* * | |
| 180 | * @param pr otocolType The proto colType to set. | |
| 181 | * / | |
| 182 | pu blic void setProtoco lType(Stri ng protoco lType) { | |
| 183 | this .protocolT ype = prot ocolType; | |
| 184 | } | |
| 185 | ||
| 186 | /* * | |
| 187 | * @return R eturns the transceiv er. | |
| 188 | * / | |
| 189 | pu blic Strin g getTrans ceiver() { | |
| 190 | retu rn transce iver; | |
| 191 | } | |
| 192 | ||
| 193 | /* * | |
| 194 | * @param tr ansceiver The transc eiver to s et. | |
| 195 | * / | |
| 196 | pu blic void setTransce iver(Strin g transcei ver) { | |
| 197 | this .transceiv er = trans ceiver; | |
| 198 | } | |
| 199 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.