mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Missing file .....
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14508 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
50
config/alfresco/period-type-context.xml
Normal file
50
config/alfresco/period-type-context.xml
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
This file is used to register period providers
|
||||||
|
-->
|
||||||
|
|
||||||
|
<beans>
|
||||||
|
|
||||||
|
<bean id="period.none" class="org.alfresco.repo.dictionary.types.period.NoPeriod" />
|
||||||
|
<bean id="period.days" class="org.alfresco.repo.dictionary.types.period.Days" />
|
||||||
|
<bean id="period.weeks" class="org.alfresco.repo.dictionary.types.period.Weeks" />
|
||||||
|
<bean id="period.months" class="org.alfresco.repo.dictionary.types.period.Months" />
|
||||||
|
<bean id="period.quarters" class="org.alfresco.repo.dictionary.types.period.Quarters" />
|
||||||
|
<bean id="period.years" class="org.alfresco.repo.dictionary.types.period.Years" />
|
||||||
|
|
||||||
|
<bean id="period.end.of.month" class="org.alfresco.repo.dictionary.types.period.EndOfMonth" />
|
||||||
|
<bean id="period.end.of.quarter" class="org.alfresco.repo.dictionary.types.period.EndOfQuarter" />
|
||||||
|
<bean id="period.end.of.year" class="org.alfresco.repo.dictionary.types.period.EndOfYear" />
|
||||||
|
|
||||||
|
<bean id="period.end.of.financial.month" class="org.alfresco.repo.dictionary.types.period.EndOfFinancialMonth" >
|
||||||
|
<property name="startDayOfMonth">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="startMonth">
|
||||||
|
<value>9</value>
|
||||||
|
</property>
|
||||||
|
</bean>
|
||||||
|
<bean id="period.end.of.financial.quarter" class="org.alfresco.repo.dictionary.types.period.EndOfFinancialQuarter" >
|
||||||
|
<property name="startDayOfMonth">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="startMonth">
|
||||||
|
<value>9</value>
|
||||||
|
</property>
|
||||||
|
</bean>
|
||||||
|
<bean id="period.end.of.financial.year" class="org.alfresco.repo.dictionary.types.period.EndOfFinancialYear" >
|
||||||
|
<property name="startDayOfMonth">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="startMonth">
|
||||||
|
<value>9</value>
|
||||||
|
</property>
|
||||||
|
</bean>
|
||||||
|
|
||||||
|
<bean id="period.cron" class="org.alfresco.repo.dictionary.types.period.Cron" />
|
||||||
|
<bean id="period.xml.duration" class="org.alfresco.repo.dictionary.types.period.XMLDuration" />
|
||||||
|
|
||||||
|
</beans>
|
Reference in New Issue
Block a user