Produced by Araxis Merge on 3/24/2017 5:17: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 | MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_user\mhv-usermgmt-portal-portlet\src\main\java\gov\va\med\mhv\usermgmt\web\formbean | ForgotUserName.java | Thu Feb 11 17:12:00 2016 UTC |
| 2 | MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_user\mhv-usermgmt-portal-portlet\src\main\java\gov\va\med\mhv\usermgmt\web\formbean | ForgotUserName.java | Fri Mar 24 20:46:44 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 296 |
| 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 | /** | |
| 2 | * | |
| 3 | */ | |
| 4 | package go v.va.med.m hv.usermgm t.web.form bean; | |
| 5 | ||
| 6 | import jav a.io.Seria lizable; | |
| 7 | ||
| 8 | import org .springfra mework.con text.annot ation.Scop e; | |
| 9 | import org .springfra mework.ste reotype.Co mponent; | |
| 10 | import org .springfra mework.web .context.W ebApplicat ionContext ; | |
| 11 | ||
| 12 | /** | |
| 13 | * @author
|
|
| 14 | * | |
| 15 | */ | |
| 16 | @Component | |
| 17 | @Scope(Web Applicatio nContext.S COPE_SESSI ON) | |
| 18 | public cla ss ForgotU serName im plements S erializabl e { | |
| 19 | ||
| 20 | /* * | |
| 21 | * | |
| 22 | * / | |
| 23 | pr ivate stat ic final l ong serial VersionUID = 4398006 4534616451 61L; | |
| 24 | ||
| 25 | pr ivate Stri ng firstNa me; | |
| 26 | pr ivate Stri ng lastNam e; | |
| 27 | pr ivate Stri ng userNam e; | |
| 28 | pr ivate Stri ng passwor d; | |
| 29 | pr ivate Stri ng confirm Password; | |
| 30 | pr ivate Stri ng gender; | |
| 31 | pr ivate Stri ng day; | |
| 32 | pr ivate Stri ng month; | |
| 33 | pr ivate Stri ng year; | |
| 34 | ||
| 35 | pr ivate Stri ng answer1 ; | |
| 36 | pr ivate Stri ng answer2 ; | |
| 37 | ||
| 38 | pr ivate Stri ng questio n1; | |
| 39 | pr ivate Stri ng questio n2; | |
| 40 | ||
| 41 | pu blic Forgo tUserName( ) { | |
| 42 | ||
| 43 | } | |
| 44 | ||
| 45 | pu blic Strin g getFirst Name() { | |
| 46 | retu rn firstNa me; | |
| 47 | } | |
| 48 | ||
| 49 | pu blic void setFirstNa me(String firstName) { | |
| 50 | this .firstName = firstNa me; | |
| 51 | } | |
| 52 | ||
| 53 | pu blic Strin g getGende r() { | |
| 54 | retu rn gender; | |
| 55 | } | |
| 56 | ||
| 57 | pu blic void setGender( String gen der) { | |
| 58 | this .gender = gender; | |
| 59 | } | |
| 60 | ||
| 61 | pu blic Strin g getLastN ame() { | |
| 62 | retu rn lastNam e; | |
| 63 | } | |
| 64 | ||
| 65 | pu blic void setLastNam e(String l astName) { | |
| 66 | this .lastName = lastName ; | |
| 67 | } | |
| 68 | ||
| 69 | pu blic Strin g getDay() { | |
| 70 | retu rn day; | |
| 71 | } | |
| 72 | ||
| 73 | pu blic void setDay(Str ing day) { | |
| 74 | this .day = day ; | |
| 75 | } | |
| 76 | ||
| 77 | pu blic Strin g getMonth () { | |
| 78 | retu rn month; | |
| 79 | } | |
| 80 | ||
| 81 | pu blic void setMonth(S tring mont h) { | |
| 82 | this .month = m onth; | |
| 83 | } | |
| 84 | ||
| 85 | pu blic Strin g getYear( ) { | |
| 86 | retu rn year; | |
| 87 | } | |
| 88 | ||
| 89 | pu blic void setYear(St ring year) { | |
| 90 | this .year = ye ar; | |
| 91 | } | |
| 92 | ||
| 93 | pu blic Strin g getAnswe r1() { | |
| 94 | retu rn answer1 ; | |
| 95 | } | |
| 96 | ||
| 97 | pu blic void setAnswer1 (String an swer1) { | |
| 98 | this .answer1 = answer1; | |
| 99 | } | |
| 100 | ||
| 101 | pu blic Strin g getAnswe r2() { | |
| 102 | retu rn answer2 ; | |
| 103 | } | |
| 104 | ||
| 105 | pu blic void setAnswer2 (String an swer2) { | |
| 106 | this .answer2 = answer2; | |
| 107 | } | |
| 108 | ||
| 109 | pu blic Strin g getUserN ame() { | |
| 110 | retu rn userNam e; | |
| 111 | } | |
| 112 | ||
| 113 | pu blic void setUserNam e(String u serName) { | |
| 114 | this .userName = userName ; | |
| 115 | } | |
| 116 | ||
| 117 | pu blic Strin g getPassw ord() { | |
| 118 | retu rn passwor d; | |
| 119 | } | |
| 120 | ||
| 121 | pu blic void setPasswor d(String p assword) { | |
| 122 | this .password = password ; | |
| 123 | } | |
| 124 | ||
| 125 | pu blic Strin g getConfi rmPassword () { | |
| 126 | retu rn confirm Password; | |
| 127 | } | |
| 128 | ||
| 129 | pu blic void setConfirm Password(S tring conf irmPasswor d) { | |
| 130 | this .confirmPa ssword = c onfirmPass word; | |
| 131 | } | |
| 132 | ||
| 133 | pu blic Strin g getQuest ion1() { | |
| 134 | retu rn questio n1; | |
| 135 | } | |
| 136 | ||
| 137 | pu blic void setQuestio n1(String question1) { | |
| 138 | this .question1 = questio n1; | |
| 139 | } | |
| 140 | ||
| 141 | pu blic Strin g getQuest ion2() { | |
| 142 | retu rn questio n2; | |
| 143 | } | |
| 144 | ||
| 145 | pu blic void setQuestio n2(String question2) { | |
| 146 | this .question2 = questio n2; | |
| 147 | } | |
| 148 | ||
| 149 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.