Last change
on this file since 64 was
64,
checked in by ademcan, 13 years ago
|
Loading new magetab data in the database from IDF file.
|
File size:
652 bytes
|
Line | |
---|
1 | package magetab.idf |
---|
2 | |
---|
3 | class Protocol { |
---|
4 | |
---|
5 | String name |
---|
6 | String description |
---|
7 | String software |
---|
8 | String hardware |
---|
9 | OntologyTerm type |
---|
10 | String parameters |
---|
11 | String contact |
---|
12 | String term_source_ref |
---|
13 | |
---|
14 | static hasMany = [ |
---|
15 | parameters: Parameter |
---|
16 | ] |
---|
17 | |
---|
18 | static constraints = { |
---|
19 | type(nullable: true,blank:true) |
---|
20 | name(nullable:true,blank:true) |
---|
21 | description(nullable:true,blank:true) |
---|
22 | software(nullable:true,blank:true) |
---|
23 | hardware(nullable:true,blank:true) |
---|
24 | parameters(nullable:true,blank:true) |
---|
25 | contact(nullable:true,blank:true) |
---|
26 | term_source_ref(nullable:true,blank:true) |
---|
27 | } |
---|
28 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.