44 lines
2.1 KiB
XML
44 lines
2.1 KiB
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<!DOCTYPE beans PUBLIC
|
||
|
|
"-//SPRING//DTD BEAN//EN"
|
||
|
|
"http://www.springframework.org/dtd/spring-beans.dtd">
|
||
|
|
|
||
|
|
<!-- Copyright (c) 2001-2005 dev Information Technology Co.,Ltd. All Rights
|
||
|
|
Reserved. This software is the confidential and proprietary information of
|
||
|
|
dev Information Technology Co.,Ltd. ("Confidential Information"). You shall
|
||
|
|
not disclose such Confidential Information and shall use it only in accordance
|
||
|
|
with the terms of the license agreement you entered into with dev. dev MAKES
|
||
|
|
NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE SOFTWARE, EITHER
|
||
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
|
||
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. dev
|
||
|
|
SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING,
|
||
|
|
MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. -->
|
||
|
|
<!-- $Id: configContext.xml,v 1.5 2010/06/01 09:14:16 peng.lei Exp $ -->
|
||
|
|
|
||
|
|
<beans>
|
||
|
|
<!-- 统计unique-key -->
|
||
|
|
<bean id="uniqueKeyLoader" parent="abstractUniqueKeyLoader">
|
||
|
|
<property name="resources">
|
||
|
|
<list>
|
||
|
|
<value>classpath:config/origen/modelConfig.xml</value>
|
||
|
|
</list>
|
||
|
|
</property>
|
||
|
|
</bean>
|
||
|
|
<!--Global Param Beans -->
|
||
|
|
<bean id="currentUserSession" class="com.dev.swms.server.service.bean.CurrentUserSession" />
|
||
|
|
<bean id="userNameSession" class="com.dev.swms.server.service.bean.UserSession"
|
||
|
|
parent="baseParamBean" />
|
||
|
|
<bean id="warehouseSession" class="com.dev.swms.server.service.bean.WarehouseSession"
|
||
|
|
parent="baseParamBean" />
|
||
|
|
<bean id="invalidDateSetting" class="com.dev.swms.server.service.bean.InvalidDateSetting"
|
||
|
|
parent="baseParamBean" />
|
||
|
|
<bean id="warehouseCodeSession" class="com.dev.swms.server.service.bean.WarehouseCodeSession"
|
||
|
|
parent="baseParamBean" />
|
||
|
|
|
||
|
|
<bean id="receivingLocationParam"
|
||
|
|
class="com.dev.swms.server.service.bean.ReceivingLocationTypeParam"
|
||
|
|
parent="baseParamBean" />
|
||
|
|
|
||
|
|
<bean id="clientOtherInfo" class="com.dev.swms.server.service.bean.WarehouseInfoInClient" />
|
||
|
|
<bean id="userInfoInClient" class="com.dev.swms.server.service.bean.UserInfoInClient" />
|
||
|
|
</beans>
|