Last change
on this file since 83 was
83,
checked in by ademcan, 12 years ago
|
modification of some magetab domain classes
|
-
Property svn:keywords set to
Rev Date Author
|
File size:
739 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 mapping = { |
---|
19 | description type: 'text' |
---|
20 | } |
---|
21 | |
---|
22 | static constraints = { |
---|
23 | type(nullable: true,blank:true) |
---|
24 | name(nullable:true,blank:true) |
---|
25 | description(nullable:true,blank:true) |
---|
26 | software(nullable:true,blank:true) |
---|
27 | hardware(nullable:true,blank:true) |
---|
28 | parameters(nullable:true,blank:true) |
---|
29 | contact(nullable:true,blank:true) |
---|
30 | term_source_ref(nullable:true,blank:true) |
---|
31 | } |
---|
32 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.