Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F113332740
Request.java
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, May 17, 06:27
Size
736 B
Mime Type
text/x-java
Expires
Mon, May 19, 06:27 (2 d)
Engine
blob
Format
Raw Data
Handle
26231076
Attached To
R3229 Genome Privacy - SHCS App
Request.java
View Options
/*
*
*/
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
Log In to Comment