From: <rv...@us...> - 2011-04-25 18:46:19
|
Revision: 800 http://treebase.svn.sourceforge.net/treebase/?rev=800&view=rev Author: rvos Date: 2011-04-25 18:46:13 +0000 (Mon, 25 Apr 2011) Log Message: ----------- Adding empty PhyloWS sub-controllers Modified Paths: -------------- trunk/treebase-web/src/main/webapp/WEB-INF/treebase-servlet.xml Added Paths: ----------- trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSMatrixController.java trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSStudyController.java trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSTaxonController.java trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSTreeController.java Added: trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSMatrixController.java =================================================================== --- trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSMatrixController.java (rev 0) +++ trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSMatrixController.java 2011-04-25 18:46:13 UTC (rev 800) @@ -0,0 +1,5 @@ +package org.cipres.treebase.web.controllers; + +public class PhyloWSMatrixController extends PhyloWSController { + +} Added: trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSStudyController.java =================================================================== --- trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSStudyController.java (rev 0) +++ trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSStudyController.java 2011-04-25 18:46:13 UTC (rev 800) @@ -0,0 +1,5 @@ +package org.cipres.treebase.web.controllers; + +public class PhyloWSStudyController extends PhyloWSController { + +} Added: trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSTaxonController.java =================================================================== --- trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSTaxonController.java (rev 0) +++ trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSTaxonController.java 2011-04-25 18:46:13 UTC (rev 800) @@ -0,0 +1,5 @@ +package org.cipres.treebase.web.controllers; + +public class PhyloWSTaxonController extends PhyloWSController { + +} Added: trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSTreeController.java =================================================================== --- trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSTreeController.java (rev 0) +++ trunk/treebase-web/src/main/java/org/cipres/treebase/web/controllers/PhyloWSTreeController.java 2011-04-25 18:46:13 UTC (rev 800) @@ -0,0 +1,5 @@ +package org.cipres.treebase.web.controllers; + +public class PhyloWSTreeController extends PhyloWSController { + +} Modified: trunk/treebase-web/src/main/webapp/WEB-INF/treebase-servlet.xml =================================================================== --- trunk/treebase-web/src/main/webapp/WEB-INF/treebase-servlet.xml 2011-04-22 14:33:09 UTC (rev 799) +++ trunk/treebase-web/src/main/webapp/WEB-INF/treebase-servlet.xml 2011-04-25 18:46:13 UTC (rev 800) @@ -47,6 +47,30 @@ <property name="phyloTreeService"><ref bean="phyloTreeService"></ref></property> <property name="studyService"><ref bean="studyService"></ref></property> </bean> + + <bean id="phyloWSStudyController" class="org.cipres.treebase.web.controllers.PhyloWSStudyController"> + <property name="matrixService"><ref bean="matrixService"></ref></property> + <property name="phyloTreeService"><ref bean="phyloTreeService"></ref></property> + <property name="studyService"><ref bean="studyService"></ref></property> + </bean> + + <bean id="phyloWSTaxonController" class="org.cipres.treebase.web.controllers.PhyloWSTaxonController"> + <property name="matrixService"><ref bean="matrixService"></ref></property> + <property name="phyloTreeService"><ref bean="phyloTreeService"></ref></property> + <property name="studyService"><ref bean="studyService"></ref></property> + </bean> + + <bean id="phyloWSMatrixController" class="org.cipres.treebase.web.controllers.PhyloWSMatrixController"> + <property name="matrixService"><ref bean="matrixService"></ref></property> + <property name="phyloTreeService"><ref bean="phyloTreeService"></ref></property> + <property name="studyService"><ref bean="studyService"></ref></property> + </bean> + + <bean id="phyloWSTreeController" class="org.cipres.treebase.web.controllers.PhyloWSTreeController"> + <property name="matrixService"><ref bean="matrixService"></ref></property> + <property name="phyloTreeService"><ref bean="phyloTreeService"></ref></property> + <property name="studyService"><ref bean="studyService"></ref></property> + </bean> <bean id="filenameController" class="org.cipres.treebase.web.controllers.ShortPathUrlFilenameViewController"/> <!--bean id="filenameController" class="org.springframework.web.servlet.mvc.UrlFilenameViewController"/ --> @@ -905,6 +929,10 @@ <props> <prop key="/top/**">OAIPMHController</prop> <prop key="/phylows/**">phyloWSController</prop> + <prop key="/phylows/study/**">phyloWSStudyController</prop> + <prop key="/phylows/taxon/**">phyloWSTaxonController</prop> + <prop key="/phylows/tree/**">phyloWSTreeController</prop> + <prop key="/phylows/matrix/**">phyloWSMatrixController</prop> <prop key="/about.html">filenameController</prop> <prop key="/home.html">filenameController</prop> <prop key="/login.html">filenameController</prop> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |