Skip to content

Commit

Permalink
Merge pull request #469
Browse files Browse the repository at this point in the history
AD-301: Add support for Enhanced Scheme Data (L2/L3 data)
  • Loading branch information
kpieloch authored Oct 24, 2024
2 parents f36a06f + 5cec877 commit d3a4267
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions adyenv6core/resources/adyenv6core-spring.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@
<bean id="defaultAdyenPaymentServiceFactory" class="com.adyen.v6.factory.AdyenPaymentServiceFactory">
<constructor-arg name="adyenRequestFactory" ref="adyenRequestFactory"/>
<constructor-arg name="adyenMerchantAccountStrategy" ref="adyenMerchantStrategy"/>
<constructor-arg name="defaultAdyenRequestService" ref="adyenRequestService"/>
</bean>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ private AbstractAdyenApiService() {
public AbstractAdyenApiService(final BaseStoreModel baseStore, final String merchantAccount, final AdyenRequestService adyenRequestService) {
this.baseStore = baseStore;
this.merchantAccount = merchantAccount;
this.adyenRequestService = adyenRequestService;

if (Boolean.TRUE.equals(baseStore.getAdyenPosEnabled())) {
posConfig = new Config();
Expand Down

0 comments on commit d3a4267

Please sign in to comment.