Page MenuHomec4science

Request.java
No OneTemporary

File Metadata

Created
Sat, May 17, 06:27

Request.java

/*
*
*/
package framework.request;
import framework.Type;
public abstract class Request{
public static final String JSON_KEY_RQT = "request";
public static final String JSON_KEY_TYPE = "type";
public static final String JSON_KEY_REP = "reply";
private Type type;
/** The id patient. */
private int patientId;
/**
* Instantiates a new request.
*
* @param patientId the id patient
* @param id_mu the id medical unit
* @param id_t the id tests
* @param markers the markers
* @param cfs the clinical factors
*/
public Request(Type type, int patientId) {
this.type = type;
this.patientId = patientId;
}
public int getPatientId() {
return patientId;
}
public Type getType() {
return type;
}
}

Event Timeline