Last change
on this file since 84 was
84,
checked in by keesvb, 13 years ago
|
updated domain classes: added comments, carried out some normalization
|
File size:
609 bytes
|
Line | |
---|
1 | package dbnp.studycapturing |
---|
2 | |
---|
3 | /** |
---|
4 | * Class describing the available protocols in the database, and their respective protocol parameters |
---|
5 | * Concrete instances of protocol application (and parameter values) should be stored as ProtocolInstance |
---|
6 | * For the moment, there is one global Protocol store. From user experience, it should become clear if this store |
---|
7 | * has to remain global or should be bound to specific templates, users, user groups or even studies. |
---|
8 | */ |
---|
9 | class Protocol { |
---|
10 | |
---|
11 | String name |
---|
12 | Term reference |
---|
13 | |
---|
14 | static hasMany = [parameters : ProtocolParameter] |
---|
15 | |
---|
16 | static constraints = { |
---|
17 | } |
---|
18 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.