Added widget service to the application context (RAVE-1077) git-svn-id: https://svn.apache.org/repos/asf/rave/trunk@1540830 13f79535-47bb-0310-9956-ffa450edef68
Project: http://git-wip-us.apache.org/repos/asf/rave/repo Commit: http://git-wip-us.apache.org/repos/asf/rave/commit/23b232c1 Tree: http://git-wip-us.apache.org/repos/asf/rave/tree/23b232c1 Diff: http://git-wip-us.apache.org/repos/asf/rave/diff/23b232c1 Branch: refs/heads/angular Commit: 23b232c14f74c911cd200a38251c3bfbdc25f33f Parents: c29dc9d Author: Matthew B. Franklin <[email protected]> Authored: Mon Nov 11 20:17:26 2013 +0000 Committer: Matthew B. Franklin <[email protected]> Committed: Mon Nov 11 20:17:26 2013 +0000 ---------------------------------------------------------------------- .../src/main/webapp/WEB-INF/cxf-applicationContext.xml | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/rave/blob/23b232c1/rave-portal-resources/src/main/webapp/WEB-INF/cxf-applicationContext.xml ---------------------------------------------------------------------- diff --git a/rave-portal-resources/src/main/webapp/WEB-INF/cxf-applicationContext.xml b/rave-portal-resources/src/main/webapp/WEB-INF/cxf-applicationContext.xml index ac7e114..c36f5f6 100644 --- a/rave-portal-resources/src/main/webapp/WEB-INF/cxf-applicationContext.xml +++ b/rave-portal-resources/src/main/webapp/WEB-INF/cxf-applicationContext.xml @@ -59,6 +59,7 @@ <ref bean="pagesForRenderBean" /> <ref bean="categoriesBean"/> <ref bean="preferencesBean"/> + <ref bean="widgetsBean"/> </jaxrs:serviceBeans> </jaxrs:server> @@ -76,6 +77,7 @@ </bean> <bean id="preferencesBean" class="org.apache.rave.rest.impl.DefaultPortalPreferenceResource" autowire="byType" /> + <bean id="widgetsBean" class="org.apache.rave.rest.impl.DefaultWidgetsResource" autowire="byType" /> <bean id="pageLayoutBean" class="org.apache.rave.rest.impl.DefaultPageLayoutResource" autowire="byType" />
