package dbnp.studycapturing /** * Link table which couples studies with persons and the role they have within the study * * Revision information: * $Rev: 1426 $ * $Author: work@osx.eu $ * $Date: 2011-01-21 18:37:02 +0000 (vr, 21 jan 2011) $ */ class StudyPerson extends nl.grails.plugins.gdt.Identity { // A StudyPerson relation always belongs to one study. static belongsTo = [parent : Study] /** The Person which is referenced in the Study */ Person person /** The role this Person has in the Study */ PersonRole role static constraints = { } }