Last change
on this file since 1027 was
1027,
checked in by robert@…, 10 years ago
|
Implemented compare templates feature and fixed show studies overview (tickets #7 and #137)
|
-
Property svn:keywords set to
Author Date Rev
|
File size:
619 bytes
|
Line | |
---|
1 | package dbnp.studycapturing |
---|
2 | |
---|
3 | /** |
---|
4 | * This entity describes actual dbNP submodule instances: what type of data they store, and how to reach them |
---|
5 | */ |
---|
6 | class AssayModule extends Identity { |
---|
7 | |
---|
8 | /** The name of the module, for user-reference purposes */ |
---|
9 | String name |
---|
10 | |
---|
11 | /** A descriptive string describing the 'platform' of the assay data in the module */ |
---|
12 | String platform |
---|
13 | |
---|
14 | /** The base URL at which the module instance is located. This is also used |
---|
15 | * as a consumer parameter to identify the module in the authentication process. |
---|
16 | */ |
---|
17 | String url |
---|
18 | |
---|
19 | static constraints = { |
---|
20 | } |
---|
21 | |
---|
22 | def String toString() { |
---|
23 | return name; |
---|
24 | } |
---|
25 | |
---|
26 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.