Changeset 80
- Timestamp:
- Jan 7, 2010, 1:38:25 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 16 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/DataSource.groovy
r54 r80 8 8 cache.use_second_level_cache=true 9 9 cache.use_query_cache=true 10 cache.provider_class=' com.opensymphony.oscache.hibernate.OSCacheProvider'10 cache.provider_class='net.sf.ehcache.hibernate.EhCacheProvider' 11 11 } 12 12 // environment specific settings -
trunk/grails-app/domain/dbnp/studycapturing/Ontology.groovy
r77 r80 5 5 String name 6 6 String shortName 7 URIurl7 String url 8 8 9 static constraints = {10 }11 9 } -
trunk/grails-app/domain/dbnp/studycapturing/Protocol.groovy
r77 r80 1 1 package dbnp.studycapturing 2 2 3 /** 4 * Class describing the available protocols in the database, and their respective protocol parameters 5 * Concrete instances of protocol application (and parameter values) should be stored as ProtocolInstance 6 */ 3 7 class Protocol { 8 9 String name 10 Term reference 11 12 static hasMany = [parameters : ProtocolParameter] 4 13 5 14 static constraints = { -
trunk/grails-app/domain/dbnp/studycapturing/ProtocolParameter.groovy
r77 r80 3 3 class ProtocolParameter { 4 4 5 enum ParameterType { STRING, NUMBER, LIST } 5 String name 6 ProtocolParameterType type 7 String unit 8 String description 9 Term reference 6 10 7 String name 8 ParameterType type 9 11 static hasMany = [listEntries : String] 12 10 13 static constraints = { 11 14 } -
trunk/grails-app/domain/dbnp/studycapturing/Template.groovy
r77 r80 7 7 8 8 static constraints = { 9 name(unique:true) 10 } 11 12 def String toString() { 13 return this.name; 9 14 } 10 15 } -
trunk/grails-app/domain/dbnp/studycapturing/Term.groovy
r77 r80 5 5 String name 6 6 Ontology ontology 7 long accessionNumber7 String accession 8 8 9 9 static constraints = { -
trunk/grails-app/domain/dbnp/transcriptomics/data/Chip.groovy
r79 r80 1 package dbnp.transcriptomics.data 1 2 /** 2 3 * The Chip entity. -
trunk/grails-app/domain/dbnp/transcriptomics/data/ChipAnnotation.groovy
r79 r80 1 package dbnp.transcriptomics.data 1 2 /** 2 3 * The Chip entity. -
trunk/grails-app/domain/dbnp/transcriptomics/data/Expression.groovy
r79 r80 1 package dbnp.transcriptomics.data 1 2 /** 2 3 * The Chip entity. -
trunk/grails-app/domain/nimble/User.groovy
r69 r80 1 2 1 package nimble 3 2 … … 6 5 // Extend UserBase with your custom values here 7 6 7 def String toString() { 8 return this.username; 9 } 10 11 8 12 }
Note: See TracChangeset
for help on using the changeset viewer.