Skip to content
Snippets Groups Projects
LabProcedureBean.java 8.4 KiB
Newer Older
  • Learn to ignore specific revisions
  • HMoss's avatar
    HMoss committed
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
    package edu.ncsu.csc.itrust.beans;
    
    import java.sql.Timestamp;
    
    
    
    /**
     * A bean for storing data about a lab procedure.
     * 
     * A bean's purpose is to store data. Period. Little or no functionality is to be added to a bean 
     * (with the exception of minor formatting such as concatenating phone numbers together). 
     * A bean must only have Getters and Setters (Eclipse Hint: Use Source > Generate Getters and Setters 
     * to create these easily)
     */
    public class LabProcedureBean {
    	
    	public final static String In_Transit = "In Transit";
    	public final static String Received = "Received";
    	public final static String Testing = "Testing";
    	public final static String Pending = "Pending";
    	public final static String Completed = "Completed";
    	
    	
    	public final static String Allow = "ALLOWED";
    	public final static String Restrict = "RESTRICTED";
    
    	
    	/**
    	 * Unique 10-digit number that does not start with 9
    	 */
    	 private long pid;	 
    	 
    	 /**
    	  * Unique identifier for a laboratory procedure of a patient
    	  */
    	 private long procedureID;
    	 
    	 /**
    	  * Digits of the format nnnnn-n 
    	  */
    	 private String loinc; 
    	
    	 /**
    	  * One of (NOT YET RECEIVED, PENDING, COMPLETED)
    	  */
    	 private String status = "";
    	 
    	 /**
    	  * Up to 500 alphanumeric characters
    	  */
    	 private String commentary = "";
    	 
    	 /**
    	  * Up to 500 alphanumeric characters
    	  */
    	 private String results = "";
    	 
    	 /**
    	  * Office VisitID	Identifier that specifies the office visit in 
    	  * which the laboratory procedure was ordered
    	  */
    	 private long ovID; 
    	 
    	 /**
    	  * Date/Time of last status update 	Timestamp
    	  */
    	 private Timestamp timestamp;
    	 
    	 /**
    	  * permission granted by lhcp who ordered test:
    	  * "ALLOWED", "RESTRICTED"
    	  */
    	 private String rights = Allow;
    	 
    	 /**
    	  * The assigned Lab Tech ID
    	  */
    	 private long LTID;
    	 
    	 /**
    	  * This is the priority of the Lab Procedure (from 1-3)
    	  */
    	 private int priorityCode;
    	 
    	 /**
    	  * Whether or not a patient has viewed the lab procedure
    	  */
    	 private boolean viewedByPatient = false;
    	 
    	 /**
    	 * The result as a numerical value.  Stored as a string to ensure accuracy.
    	 * The number may have an optional sign and units, then one of the following formats:
    	 * 		DIGIT+ (unit)				(one or more digits)
    	 *      DIGIT+ . DIGIT* (unit)		(one or more digits, a decimal point, and zero or more digits)
    	 *      . DIGIT+ (unit)			(a decimal point and one or more digits)
    	 */
    	private String numericalResult = "";
    	
    	/**
    	 * The units for the results
    	 * 
    	 */
    	private String numericalResultUnit = "";
    	 
    	 /**
    	 * The upper bound of the confidence interval. 
    	 */
    	private String upperBound = "";
    	 
    	 /**
    	 * The lower bound of the confidence interval.  
    	 */
    	private String lowerBound = "";
    	 
    	 
    	 public LabProcedureBean(){
    	 }
    
    	/**
    	 * Unique 10-digit number that does not start with 9
    	 */
    	public long getPid() {
    		return pid;
    	}
    
    
    	/**
    	 * Unique 10-digit number that does not start with 9
    	 */
    	public void setPid(long pid) {
    		this.pid = pid;
    	}
    
    
    	/**
    	  * Unique identifier for a laboratory procedure of a patient
    	  */
    	public long getProcedureID() {
    		return procedureID;
    	}
    
    
    	/**
    	  * Unique identifier for a laboratory procedure of a patient
    	  */
    	public void setProcedureID(long procedureID) {
    		this.procedureID = procedureID;
    	}
    
    
    	 /**
    	  * Digits of the format nnnnn-n 
    	  */
    	public String getLoinc() {
    		return loinc;
    	}
    
    
    	 /**
    	  * Digits of the format nnnnn-n 
    	  */
    	public void setLoinc(String loinc) {
    		this.loinc = loinc;
    	}
    
    
    	/**
    	  * One of (NOT YET RECEIVED, PENDING, COMPLETED)
    	  */
    	public String getStatus() {
    		return status;
    	}
    
    
    	/**
    	  * One of (NOT YET RECEIVED, PENDING, COMPLETED)
    	  */
    	public void setStatus(String status) {
    		this.status = status;
    	}
    
    
    	 /**
    	  * Up to 500 alphanumeric characters
    	  */
    	public String getCommentary() {
    		return commentary;
    	}
    
    
    	 /**
    	  * Up to 500 alphanumeric characters
    	  */
    	public void setCommentary(String commentary) {
    		this.commentary = commentary;
    	}
    
    
    	 /**
    	  * Up to 500 alphanumeric characters
    	  */
    	public String getResults() {
    		return results;
    	}
    
    
    	 /**
    	  * Up to 500 alphanumeric characters
    	  */
    	public void setResults(String results) {
    		this.results = results;
    	}
    
    
    	 /**
    	 * @return the numericalResult
    	 */
    	public String getNumericalResult() {
    		return numericalResult;
    	}
    	
    	/**
    	 * Get the numerical result as a double.  If the result is blank or null, 
    	 * NaN is returned.
    	 * @return The numerical result as a double.
    	 */
    	public double getNumericalResultAsDouble() {
    		if (numericalResult != null && numericalResult.length() > 0) {
    			return Double.parseDouble(numericalResult);
    		} else {
    			return Double.NaN;
    		}
    	}
    
    	/**
    	 * @param numericalResult the numericalResult to set
    	 */
    	public void setNumericalResult(String numericalResult) {
    		this.numericalResult = numericalResult;
    	}
    	
    	public String getNumericalResultUnit() {
    		return numericalResultUnit;
    	}
    	
    	public void setNumericalResultUnit(String numericalResultUnit) {
    		this.numericalResultUnit = numericalResultUnit;
    	}
    
    	/**
    	 * @return the upperBound
    	 */
    	public String getUpperBound() {
    		return upperBound;
    	}
    	
    	/**
    	 * Get the upper bound as a double.  If the result is blank or null, 
    	 * NaN is returned.
    	 * @return The upper bound as a double.
    	 */
    	public double getUpperBoundAsDouble() {
    		if (upperBound != null && upperBound.length() > 0) {
    			return Double.parseDouble(upperBound);
    		} else {
    			return Double.NaN;
    		}
    	}
    
    	/**
    	 * @param upperBound the upperBound to set
    	 */
    	public void setUpperBound(String upperBound) {
    		this.upperBound = upperBound;
    	}
    
    	/**
    	 * @return the lowerBound
    	 */
    	public String getLowerBound() {
    		return lowerBound;
    	}
    	
    	/**
    	 * Get the lower bound as a double.  If the result is blank or null, 
    	 * NaN is returned.
    	 * @return The lower bound as a double.
    	 */
    	public double getLowerBoundAsDouble() {
    		if (lowerBound != null && lowerBound.length() > 0) {
    			return Double.parseDouble(lowerBound);
    		} else {
    			return Double.NaN;
    		}
    	}
    
    	/**
    	 * @param lowerBound the lowerBound to set
    	 */
    	public void setLowerBound(String lowerBound) {
    		this.lowerBound = lowerBound;
    	}
    
    	/**
    	  * Office VisitID	Identifier that specifies the office visit in 
    	  * which the laboratory procedure was ordered
    	  */
    	public long getOvID() {
    		return ovID;
    	}
    
    
    	 /**
    	  * Office VisitID	Identifier that specifies the office visit in 
    	  * which the laboratory procedure was ordered
    	  */
    	public void setOvID(long ovID) {
    		this.ovID = ovID;
    	}
    
    	public Timestamp getTimestamp() {
    		return (Timestamp) timestamp.clone();
    	}
    
    
    
    	public void setTimestamp(Timestamp timestamp) {
    		this.timestamp = (Timestamp) timestamp.clone();
    	}
    
    	 /**
    	  * permission granted by lhcp who ordered test:
    	  * "ALLOWED", "RESTRICTED"
    	  */
    	public String getRights() {
    		return rights;
    	}
    
    	 /**
    	  * permission granted by lhcp who ordered test:
    	  * "ALLOWED", "RESTRICTED"
    	  */
    	public void setRights(String rights) {
    		this.rights = rights;
    	}
    	
    	
    	 public void allow(){
    		 this.rights = Allow;
    	 }
    	 
    	 public void restrict(){
    		 this.rights = Restrict;
    	 }
    	 
    	 public void statusComplete(){
    	 	this.status = Completed;
    	 }
    	 
    	 public void statusPending(){
    		 this.status = Pending;
    	 }
    	 
    	 /**
    	  * sets the status to "In transit"
    	  */
    	 public void statusInTransit(){
    		 this.status = In_Transit;
    	 }
    
    	 /**
    	  * sets the status to "Received"
    	  */
    	 public void statusReceived(){
    		 this.status = Received;
    	 }
    
    	 /**
    	  * sets the status to "Testing"
    	  */
    	 public void statusTesting(){
    		 this.status = Testing;
    	 }
    	 
    	/**
    	 * This method sets the lab technicians ID
    	 * @param lTID
    	 */
    	public void setLTID(long LTID) {
    		this.LTID = LTID;
    	}
    
    
    	/**
    	 * Gets the lab techs ID
    	 * @return The id of the assigned lab tech
    	 */
    	public long getLTID() {
    		return LTID;
    	}
    
    
    	/**
    	 * Sets the priority of the lab procedure
    	 * @param priorityCode
    	 */
    	public void setPriorityCode(int priorityCode) {
    		this.priorityCode = priorityCode;
    	}
    
    
    	/**
    	 * Gets the priority of the lab procedure
    	 * @return the priority code
    	 */
    	public int getPriorityCode() {
    		return priorityCode;
    	}
    
    	/**
    	 * Returns whether or not the patient has viewed the lab procedure
    	 * @return
    	 */
    	public boolean isViewedByPatient() {
    		return viewedByPatient;
    	}
    
    	/**
    	 * Sets whether or not a patient has viewed the lab procedure. Cannot be true until status is Completed 
    	 * @param viewedByPatient
    	 */
    	public void setViewedByPatient(boolean viewedByPatient) {
    		if (status.equals(Completed)) {
    			this.viewedByPatient = viewedByPatient;
    		}
    	}
    }