Changeset 1517 for trunk/grails-app/services
- Timestamp:
- Feb 14, 2011, 10:56:17 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/services/dbnp/modules/ModuleCommunicationService.groovy
r1506 r1517 34 34 * Number of seconds to save the data in cache 35 35 */ 36 def numberOfSecondsInCache = Integer.valueOf( ConfigurationHolder.config.modules.cacheDuration )36 def numberOfSecondsInCache = ConfigurationHolder.config.modules.cacheDuration ? Integer.valueOf( ConfigurationHolder.config.modules.cacheDuration.toString() ) : 300; 37 37 38 38 /**
Note: See TracChangeset
for help on using the changeset viewer.