Produced by Araxis Merge on 12/13/2018 10:35:25 AM Eastern Standard 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 | v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\batchprocess | BatchProcessDetail.java | Fri Dec 7 17:36:22 2018 UTC |
| 2 | v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\batchprocess | BatchProcessDetail.java | Wed Dec 12 22:26:41 2018 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 346 |
| 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 | * Copyrii ght 2005 V HA. All ri ghts reser ved | |
| 3 | ********* ********** ********** ********** ********** ********** *********/ | |
| 4 | ||
| 5 | package go v.va.med.f w.batchpro cess; | |
| 6 | ||
| 7 | import org .apache.co mmons.lang .builder.T oStringBui lder; | |
| 8 | import org .quartz.Sc heduler; | |
| 9 | ||
| 10 | import gov .va.med.fw .model.Abs tractEntit y; | |
| 11 | import gov .va.med.fw .model.loo kup.Lookup ; | |
| 12 | import gov .va.med.fw .service.t rigger.Tri ggerIdenti ty.Destina tionType; | |
| 13 | ||
| 14 | /** | |
| 15 | * Static summary in formation about a ba tch proces s job. | |
| 16 | * | |
| 17 | * Created Jan 27, 2 006 3:52:5 7 PM | |
| 18 | * | |
| 19 | * DNS | |
| 20 | */ | |
| 21 | public cla ss BatchPr ocessDetai l extends AbstractEn tity imple ments Look up { | |
| 22 | /* * | |
| 23 | * An instan ce of seri alVersionU ID | |
| 24 | * / | |
| 25 | pr ivate stat ic final l ong serial VersionUID = 6444897 1743822041 94L; | |
| 26 | ||
| 27 | pr ivate Stri ng jobName ; | |
| 28 | ||
| 29 | pr ivate Stri ng jobDesc ription; | |
| 30 | ||
| 31 | pr ivate Stri ng trigger Name; | |
| 32 | ||
| 33 | pr ivate Stri ng trigger Group = "e sr.common. static.tri ggers"; | |
| 34 | ||
| 35 | pu blic stati c final St ring DEFAU LT_GROUP = Scheduler .DEFAULT_G ROUP; | |
| 36 | ||
| 37 | pr ivate Stri ng groupNa me = DEFAU LT_GROUP; | |
| 38 | ||
| 39 | pr ivate Dest inationTyp e destinat ionType; | |
| 40 | ||
| 41 | /* * | |
| 42 | * @return R eturns the destinati onType. | |
| 43 | * / | |
| 44 | pu blic Desti nationType getDestin ationType( ) { | |
| 45 | retu rn destina tionType; | |
| 46 | } | |
| 47 | ||
| 48 | /* * | |
| 49 | * @param de stinationT ype | |
| 50 | * The dest inationTyp e to set. | |
| 51 | * / | |
| 52 | pu blic void setDestina tionType(D estination Type desti nationType ) { | |
| 53 | this .destinati onType = d estination Type; | |
| 54 | } | |
| 55 | ||
| 56 | /* * | |
| 57 | * @return R eturns the groupName . | |
| 58 | * / | |
| 59 | pu blic Strin g getGroup Name() { | |
| 60 | retu rn groupNa me; | |
| 61 | } | |
| 62 | ||
| 63 | pu blic Strin g getJobGr oup() { | |
| 64 | retu rn getGrou pName(); | |
| 65 | } | |
| 66 | ||
| 67 | /* * | |
| 68 | * @param gr oupName | |
| 69 | * The grou pName to s et. | |
| 70 | * / | |
| 71 | pu blic void setGroupNa me(String groupName) { | |
| 72 | this .groupName = groupNa me; | |
| 73 | } | |
| 74 | ||
| 75 | /* * | |
| 76 | * @return R eturns the jobName. | |
| 77 | * / | |
| 78 | pu blic Strin g getJobNa me() { | |
| 79 | retu rn jobName ; | |
| 80 | } | |
| 81 | ||
| 82 | /* * | |
| 83 | * @param jo bName | |
| 84 | * The jobN ame to set . | |
| 85 | * / | |
| 86 | pu blic void setJobName (String jo bName) { | |
| 87 | this .jobName = jobName; | |
| 88 | } | |
| 89 | ||
| 90 | pr otected vo id buildTo String(ToS tringBuild er builder ) { | |
| 91 | buil der.append ("jobName" , jobName) ; | |
| 92 | buil der.append ("groupNam e", groupN ame); | |
| 93 | buil der.append ("destinat ionType", destinatio nType); | |
| 94 | } | |
| 95 | ||
| 96 | /* | |
| 97 | * (non-Java doc) | |
| 98 | * | |
| 99 | * @see gov. va.med.fw. model.look up.Lookup# getCode() | |
| 100 | * / | |
| 101 | pu blic Strin g getCode( ) { | |
| 102 | retu rn jobName ; | |
| 103 | } | |
| 104 | ||
| 105 | /* | |
| 106 | * (non-Java doc) | |
| 107 | * | |
| 108 | * @see gov. va.med.fw. model.look up.Lookup# getDescrip tion() | |
| 109 | * / | |
| 110 | pu blic Strin g getDescr iption() { | |
| 111 | retu rn jobName + " (" | |
| 112 | + (desti nationType != null ? destinati onType.get Name() : " Unspecifie d Destinat ion") | |
| 113 | + ")"; | |
| 114 | } | |
| 115 | ||
| 116 | /* | |
| 117 | * (non-Java doc) | |
| 118 | * | |
| 119 | * @see gov. va.med.fw. model.look up.Lookup# getName() | |
| 120 | * / | |
| 121 | pu blic Strin g getName( ) { | |
| 122 | retu rn jobName ; | |
| 123 | } | |
| 124 | ||
| 125 | /* * | |
| 126 | * @return R eturns the jobDescri ption. | |
| 127 | * / | |
| 128 | pu blic Strin g getJobDe scription( ) { | |
| 129 | retu rn jobDesc ription; | |
| 130 | } | |
| 131 | ||
| 132 | /* * | |
| 133 | * @param jo bDescripti on | |
| 134 | * The jobD escription to set. | |
| 135 | * / | |
| 136 | pu blic void setJobDesc ription(St ring jobDe scription) { | |
| 137 | this .jobDescri ption = jo bDescripti on; | |
| 138 | } | |
| 139 | ||
| 140 | /* * | |
| 141 | * @return R eturns the triggerNa me. | |
| 142 | * / | |
| 143 | pu blic Strin g getTrigg erName() { | |
| 144 | if ( triggerNam e != null) | |
| 145 | return triggerNa me; | |
| 146 | if ( jobName != null) | |
| 147 | return jobName + ".trigger "; | |
| 148 | ||
| 149 | retu rn null; | |
| 150 | } | |
| 151 | ||
| 152 | /* * | |
| 153 | * @param tr iggerName | |
| 154 | * The trig gerName to set. | |
| 155 | * / | |
| 156 | pu blic void setTrigger Name(Strin g triggerN ame) { | |
| 157 | this .triggerNa me = trigg erName; | |
| 158 | } | |
| 159 | ||
| 160 | /* * | |
| 161 | * @return R eturns the triggerGr oup. | |
| 162 | * / | |
| 163 | pu blic Strin g getTrigg erGroup() { | |
| 164 | retu rn trigger Group; | |
| 165 | } | |
| 166 | ||
| 167 | /* * | |
| 168 | * @param tr iggerGroup | |
| 169 | * The trig gerGroup t o set. | |
| 170 | * / | |
| 171 | pu blic void setTrigger Group(Stri ng trigger Group) { | |
| 172 | this .triggerGr oup = trig gerGroup; | |
| 173 | } | |
| 174 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.