Created
May 27, 2011 09:43
-
-
Save anpieber/994953 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <beans xmlns="http://www.springframework.org/schema/beans" xmlns:osgi="http://www.springframework.org/schema/osgi" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" | |
| xmlns:osgix="http://www.springframework.org/schema/osgi-compendium" xmlns:wicket="http://www.ops4j.org/schema/wicket" | |
| xsi:schemaLocation="http://www.springframework.org/schema/osgi http://www.springframework.org/schema/osgi/spring-osgi.xsd | |
| http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd | |
| http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd | |
| http://www.springframework.org/schema/osgi-compendium http://www.springframework.org/schema/osgi-compendium/spring-osgi-compendium.xsd | |
| http://www.ops4j.org/schema/wicket http://www.ops4j.org/schema/wicket/wicket.xsd"> | |
| <wicket:application id="springDeptStore" homepageClass="org.ops4j.pax.wicket.samples.departmentstore.view.internal.OverviewPage" | |
| mountPoint="springDeptStore" applicationName="springDeptStore" applicationFactory="springDeptStoreApplicationFactory" /> | |
| <bean id="springDeptStoreApplicationFactory" class="org.ops4j.pax.wicket.samples.departmentstore.view.internal.DeptStoreApplicationFactory" /> | |
| <wicket:registerPage id="overviewPage" pageId="overview" applicationName="springDeptStore" | |
| pageName="overview" pageClass="org.ops4j.pax.wicket.samples.departmentstore.view.internal.OverviewPage" /> | |
| <wicket:rootContentAggregator id="rootContentAggregator" applicationName="springDeptStore" | |
| aggregationPointName="swp" /> | |
| <bean id="storeDescription" class="org.ops4j.pax.wicket.samples.departmentstore.view.StoreDescription"> | |
| <property name="storeName" value="Sungei Wang Plaza" /> | |
| </bean> | |
| <osgi:list id="about" interface="org.ops4j.pax.wicket.api.PageFactory" filter="(&(pax.wicket.applicationname=springDeptStore)(pax.wicket.pagename=about))" /> | |
| </beans> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment