Last change
on this file since 70 was
70,
checked in by keesvb, 12 years ago
|
updated to Grails 1.2, restructured packages, added some domain classes, removed obsolete code
|
-
Property svn:keywords set to
Rev Date Author
|
File size:
677 bytes
|
Line | |
---|
1 | package dbnp.transcriptomics.magetab.idf |
---|
2 | |
---|
3 | class MAGEProtocol { |
---|
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.