Changeset 3312

Show
Ignore:
Timestamp:
08/23/11 15:42:30
Author:
douglm
Message:

added a file connector to synch

ical4j to xml conversion added to rpiutil.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/config/bwbuild/jboss-postgresql/synch-config.xml

    r3311 r3312  
    2424              value="http://128.113.124.225:8080/synch/" /> 
    2525               
    26     <!-- Path to keystore - comment out to use default -->           
     26    <!-- Path to keystore - comment out to use default. Used for ssl etc. -->           
    2727    <property name="keystore" 
    2828              value="@APPSERVER-DATA-DIR@/synchcerts" /> 
     29 
     30    <!-- Public/private key locations --> 
     31    <property name="privKeys" 
     32              value="@DATA_DIR@/privkeys" /> 
     33    <property name="pubKeys" 
     34              value="@DATA_DIR@/pubkeys" /> 
    2935               
    3036    <property name="connectors"> 
     
    4349        <entry key="bwdemo"  
    4450               value="org.bedework.synch.cnctrs.bedework.BedeworkConnector" /> 
     51 
     52        <!-- A file connector -->                
     53        <entry key="read-only-file"  
     54               value="org.bedework.synch.cnctrs.file.FileConnector" /> 
    4555      </map> 
    4656    </property> 
     
    8494              value="60" /> 
    8595  </bean> 
     96   
     97  <!-- The connector "file" will load the following config -  
     98       the suffix "FileConfig" is appended to the connector id --> 
     99  <bean id="read-only-fileFileConfig"  
     100        class="org.bedework.synch.cnctrs.file.FileConnectorConfig"> 
     101    <property name="readOnly" value="true" /> 
     102 
     103    <!-- seconds  -->  
     104    <property name="minPoll" value="15" /> 
     105  </bean> 
    86106</beans>