Changeset 796 for trunk/grails-app/domain
- Timestamp:
- Aug 10, 2010, 5:06:00 PM (10 years ago)
- Location:
- trunk/grails-app/domain/dbnp
- Files:
-
- 1 added
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/Study.groovy
r787 r796 1 1 package dbnp.studycapturing 2 3 import dbnp.user.User 2 4 3 5 /** … … 14 16 } 15 17 16 nimble.User owner // The owner of the study. A new study is automatically owned by its creator.18 User owner // The owner of the study. A new study is automatically owned by its creator. 17 19 String title // The title of the study 18 20 String code // currently used as the external study ID, e.g. to reference a study in a SAM module … … 28 30 29 31 static hasMany = [ 30 editors: nimble.User, // Users with read/write access to the study31 readers: nimble.User, // Users with only read access to the study32 editors: User, // Users with read/write access to the study 33 readers: User, // Users with only read access to the study 32 34 subjects: Subject, 33 35 samplingEvents: SamplingEvent, -
trunk/grails-app/domain/dbnp/studycapturing/Template.groovy
r784 r796 1 1 package dbnp.studycapturing 2 3 import dbnp.user.User 2 4 3 5 /** … … 29 31 30 32 /** The owner of the template. If the owner is not defined, it is a shared/public template */ 31 nimble.User owner33 User owner 32 34 33 35 /** The template fields which are the members of this template. This is a List to preserve the field order */ -
trunk/grails-app/domain/dbnp/user/Profile.groovy
r794 r796 13 13 * $Date$ 14 14 */ 15 package nimble15 package dbnp.user 16 16 17 17 class Profile { -
trunk/grails-app/domain/dbnp/user/User.groovy
r794 r796 13 13 * $Date$ 14 14 */ 15 package nimble15 package dbnp.user 16 16 17 17 class User {
Note: See TracChangeset
for help on using the changeset viewer.