Changeset 1027 for trunk/grails-app/domain
- Timestamp:
- Nov 1, 2010, 12:42:49 PM (10 years ago)
- Location:
- trunk/grails-app/domain/dbnp/studycapturing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/AssayModule.groovy
r1014 r1027 12 12 String platform 13 13 14 /** Consumer id (e.g., OAuth consuemr key) of module where instance is located */ 15 String consumer 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 16 18 17 19 static constraints = { -
trunk/grails-app/domain/dbnp/studycapturing/Template.groovy
r996 r1027 89 89 */ 90 90 public Template( Template otherTemplate) { 91 this() 92 93 //authenticationService = new AuthenticationService() 94 95 this.name = otherTemplate.name + " (Copy)" 96 this.description = otherTemplate.description 97 this.entity = otherTemplate.entity 98 this.owner = otherTemplate.owner 99 100 // The fields are copied by reference 101 this.fields = otherTemplate.fields 91 this( otherTemplate, otherTemplate.owner ) 102 92 } 103 93
Note: See TracChangeset
for help on using the changeset viewer.