ITPDSExchangeData interface

The ITPDSExchangeData interface provides for receiving name-value pair data from the KCM Core server.

You can use this interface to exchange data through the exchange_data(key, value, time-out) function.

  import com.aia_itp.itpdsapi.*;
  
  class MyClass implements ITPDSExchangeData {

    ....

    public String ITPDSExchangeData(String Key, String Value){
      return "my_own_data";
    }

    ....

  }