[gee-svn] SF.net SVN: gabel: [175] trunk/gee/war/WEB-INF
Status: Alpha
Brought to you by:
alllee
|
From: <al...@us...> - 2006-05-17 00:06:17
|
Revision: 175 Author: alllee Date: 2006-05-16 17:06:07 -0700 (Tue, 16 May 2006) ViewCVS: http://svn.sourceforge.net/gabel/?rev=175&view=rev Log Message: ----------- making the webapp deployable again, fixing Spring wiring. Modified Paths: -------------- trunk/gee/src/java/edu/indiana/psych/gee/service/ExperimentConfigurationService.java trunk/gee/war/WEB-INF/applicationContext.xml Modified: trunk/gee/src/java/edu/indiana/psych/gee/service/ExperimentConfigurationService.java =================================================================== --- trunk/gee/src/java/edu/indiana/psych/gee/service/ExperimentConfigurationService.java 2006-05-17 00:00:59 UTC (rev 174) +++ trunk/gee/src/java/edu/indiana/psych/gee/service/ExperimentConfigurationService.java 2006-05-17 00:06:07 UTC (rev 175) @@ -17,7 +17,7 @@ public class ExperimentConfigurationService { - private HibernateExperimentConfigurationDao experimentConfigurationDao; + private ExperimentConfigurationDao experimentConfigurationDao; private ConsentFormDao consentFormDao; public <E extends ExperimentConfiguration> E load(Class<E> configurationClass, InputStream stream) { @@ -48,7 +48,7 @@ experimentConfigurationDao.persist(configuration); } - public void setExperimentConfigurationDao(HibernateExperimentConfigurationDao experimentConfigurationDao) { + public void setExperimentConfigurationDao(ExperimentConfigurationDao experimentConfigurationDao) { this.experimentConfigurationDao = experimentConfigurationDao; } Modified: trunk/gee/war/WEB-INF/applicationContext.xml =================================================================== --- trunk/gee/war/WEB-INF/applicationContext.xml 2006-05-17 00:00:59 UTC (rev 174) +++ trunk/gee/war/WEB-INF/applicationContext.xml 2006-05-17 00:06:07 UTC (rev 175) @@ -53,7 +53,7 @@ <property name="sessionFactory" ref="sessionFactory"/> </bean> <!-- persistence layer daos--> - <bean id="experimentConfigurationDao" class="edu.indiana.psych.gee.service.ExperimentConfigurationDao"> + <bean id="experimentConfigurationDao" class="edu.indiana.psych.gee.service.HibernateExperimentConfigurationDao"> <property name="sessionFactory" ref="sessionFactory"/> </bean> <bean id="consentFormDao" class="edu.indiana.psych.gee.service.HibernateConsentFormDao"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |