Last change
on this file since 186 was
186,
checked in by keesvb, 12 years ago
|
added samples, assays and clinical data to bootstrap, modified clean data module linkage
|
-
Property svn:keywords set to
Date Author Rev
|
File size:
690 bytes
|
Line | |
---|
1 | package dbnp.studycapturing |
---|
2 | |
---|
3 | import dbnp.data.Term |
---|
4 | |
---|
5 | /** |
---|
6 | * Class describing the available protocols in the database, and their respective protocol parameters |
---|
7 | * Concrete instances of protocol application (and parameter values) should be stored as ProtocolInstance |
---|
8 | * For the moment, there is one global Protocol store. From user experience, it should become clear if this store |
---|
9 | * has to remain global or should be bound to specific templates, users, user groups or even studies. |
---|
10 | */ |
---|
11 | class Protocol { |
---|
12 | |
---|
13 | String name |
---|
14 | Term reference |
---|
15 | |
---|
16 | static hasMany = [parameters : ProtocolParameter, compounds: Compound] |
---|
17 | static constraints = { |
---|
18 | reference(nullable: true) |
---|
19 | } |
---|
20 | |
---|
21 | |
---|
22 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.