在 Intershop 7.10 中获得付款的推荐方式 methods/configurations

Recommended way to get payment methods/configurations in Intershop 7.10

Intershop 7.10,我想了解为域检索付款 methods/configurations 的推荐方法是什么。 我检查了 sld_ch_consumer_plugin 盒式磁带中的 ViewPaymentMethodList_52-ListAll 管道,我发现它使用的是已弃用的管道 GetPaymentConfigurationsByDomain,当我检查该管道时,我发现它使用的是同样已弃用的 PaymentServiceMgr。

什么是不推荐使用的方法。

编辑: 我正在尝试访问给定应用程序的付款方式是启用还是禁用:

尚未测试,但您尝试获取的信息在调用时应该可用:

PaymentConfiguration config = paymentServiceBO.
    getExtension(PersistenObjectBOExtension.class).getPersistentObject();
// retrieve the list of activated application ids
config.createApplicationIDsIterator();