awips2/cave/com.raytheon.viz.gfe/res/spring/gfe.xml
Dustin Johnson efc3c6a2f2 Issue #2038 Remove unused schemas from datadelivery spring files
Change-Id: I65a53510e3e8f9aba3fc64f011dad0905cde8b26

Former-commit-id: 2c5b357da096c9c1e2cd76560d143b8009aaba0f
2013-05-30 09:49:09 -05:00

50 lines
No EOL
2.1 KiB
XML

<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
<bean id="gfeClientConfig" class="com.raytheon.viz.gfe.core.GfeClientConfig" factory-method="getInstance">
<property name="maxSaveThreads" value="3"/>
<property name="gridSaveThreshold" value="33554432"/>
<!-- threshold = 32*1024*1024 bytes (32 MB)-->
</bean>
<bean id="gfeVtecConfig" class="com.raytheon.viz.gfe.vtec.GFEVtecConfig" factory-method="getInstance">
<property name="sitesIgnoreNationalEtn">
<set>
<value>PGUM</value>
</set>
</property>
<property name="nationalEtnPhensigs">
<set>
<value>TO.A</value>
<value>SV.A</value>
<value>HU.A</value>
<value>HU.S</value>
<value>HU.W</value>
<value>TR.A</value>
<value>TR.W</value>
</set>
</property>
<property name="tropicalEtnPhensigs">
<set>
<value>HU.A</value>
<value>HU.S</value>
<value>HU.W</value>
<value>TR.A</value>
<value>TR.W</value>
</set>
</property>
</bean>
<!-- FIXME: Uncomment to re-enable cache at CAVE startup
<bean id="gfeDiskCache" class="com.raytheon.uf.common.cache.disk.DiskCache" init-method="activateCache">
<property name="name" value="GFE"/> -->
<!-- TODO: Make this an environment variable that's passed in -->
<!-- Cache directory relative to caveData/etc/workstation/${host} default is diskCache, will be followed by ${NAME}/${PID} -->
<!-- <property name="baseCacheDir" value="diskCache"/> -->
<!-- Number of grids, to always allow in memory -->
<!-- <property name="sizeMemCacheMap" value="150"/>
</bean> -->
</beans>