<?xml version="1.0" encoding="UTF-8"?>
<!--
  YSP Network Management Service
  
  This service sends periodic Network Management messages (0800) to the YSP acquirer
  to maintain network connectivity and verify communication.
  
  AcquirerConnection is automatically queried from database for acquirer name "YSP".
  
  Configuration:
  - ysp.network.mgmt.enabled: Enable/disable service (default: true)
  - ysp.network.mgmt.interval: Interval in seconds between messages (default: 600)
  
  To disable this service, either:
  1. Remove or rename this file from the deploy/ directory
  2. Set ysp.network.mgmt.enabled property to false in this XML file
-->
<ysp-network-mgmt 
    class="org.jpos.tcpay.service.YspNetworkManagementService" 
    logger="Q2"
    name="ysp-network-management">
  
  <!-- Service runs on the scheduled thread pool with core pool size of 1 -->
  <property name="stpe-core-pool-size" value="1" />
  
  <!-- Network Management Service Configuration -->
  <property name="ysp.network.mgmt.enabled" value="true" />
  <property name="ysp.network.mgmt.interval" value="600" />
  
</ysp-network-mgmt>
