Changeset 1488 for trunk/grails-app/domain
- Timestamp:
- Feb 3, 2011, 4:46:41 PM (12 years ago)
- Location:
- trunk/grails-app/domain/dbnp/studycapturing
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/Sample.groovy
r1482 r1488 1 1 package dbnp.studycapturing 2 2 import org.dbnp.gdt.* 3 import org.dbnp.bgdt.* 3 4 4 5 /** -
trunk/grails-app/domain/dbnp/studycapturing/Study.groovy
r1482 r1488 53 53 54 54 static constraints = { 55 title(nullable:false, blank: false, maxSize: 255) 55 56 owner(nullable: true, blank: true) 56 code(nullable: false, blank: true, unique: true )57 studyUUID(nullable:true, unique:true )57 code(nullable: false, blank: true, unique: true, maxSize: 255) 58 studyUUID(nullable:true, unique:true, maxSize: 255) 58 59 // TODO: add custom validator for 'published' to assess whether the study meets all quality criteria for publication 59 60 // tested by SampleTests.testStudyPublish -
trunk/grails-app/domain/dbnp/studycapturing/Subject.groovy
r1457 r1488 1 1 package dbnp.studycapturing 2 2 import org.dbnp.gdt.* 3 import org.dbnp.bgdt.* 3 4 4 5 /**
Note: See TracChangeset
for help on using the changeset viewer.