Enter a type and click search.




Results for AmazonAuthorizationValidators

File: vendor/amzn/amazon-pay-module/etc/di.xml

<virtualType name="AmazonAuthorizationValidators"
             type="Magento\Payment\Gateway\Validator\ValidatorComposite">
    <arguments>
        <argument name="validators" xsi:type="array">
            <item name="contraints" xsi:type="string">
                Amazon\Payment\Gateway\Validator\ConstraintValidator
            </item>
            <item name="authcodes" xsi:type="string">
                Amazon\Payment\Gateway\Validator\AuthorizationValidator
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AmazonAuthorizationValidators object that it should return a Magento\Payment\Gateway\Validator\ValidatorComposite object.

This configuration tells the Object Manager that when a user wants a AmazonAuthorizationValidators object that the following arguments should be used in the foo object's constructor.

  • $validators = [...items...];

File: vendor/amzn/amazon-pay-module/etc/di.xml

<virtualType name="AmazonAuthorizeCommand"
             type="Amazon\Payment\Gateway\Command\AmazonAuthCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            Amazon\Payment\Gateway\Request\AuthorizationRequestBuilder
        </argument>
        <argument name="handler" xsi:type="object">
            Amazon\Payment\Gateway\Response\CompleteAuthHandler
        </argument>
        <argument name="transferFactory" xsi:type="object">
            Amazon\Payment\Gateway\Http\TransferFactory
        </argument>
        <argument name="validator" xsi:type="object">
            AmazonAuthorizationValidators
        </argument>
        <argument name="client" xsi:type="object">
            Amazon\Payment\Gateway\Http\Client\AuthorizeClient
        </argument>
        <argument name="errorMessageMapper" xsi:type="object">
            Amazon\Payment\Gateway\ErrorMapper\VirtualErrorMessageMapper
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AmazonAuthorizeCommand object that it should return a Amazon\Payment\Gateway\Command\AmazonAuthCommand object.

This configuration tells the Object Manager that when a user wants a AmazonAuthorizeCommand object that the following arguments should be used in the foo object's constructor.

File: vendor/amzn/amazon-pay-module/etc/di.xml

<virtualType name="AmazonSaleCommand"
             type="Amazon\Payment\Gateway\Command\AmazonAuthCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            Amazon\Payment\Gateway\Request\AuthorizationRequestBuilder
        </argument>
        <argument name="handler" xsi:type="object">
            Amazon\Payment\Gateway\Response\CompleteSaleHandler
        </argument>
        <argument name="transferFactory" xsi:type="object">
            Amazon\Payment\Gateway\Http\TransferFactory
        </argument>
        <argument name="validator" xsi:type="object">
            AmazonAuthorizationValidators
        </argument>
        <argument name="client" xsi:type="object">
            Amazon\Payment\Gateway\Http\Client\CaptureClient
        </argument>
        <argument name="errorMessageMapper" xsi:type="object">
            Amazon\Payment\Gateway\ErrorMapper\VirtualErrorMessageMapper
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AmazonSaleCommand object that it should return a Amazon\Payment\Gateway\Command\AmazonAuthCommand object.

This configuration tells the Object Manager that when a user wants a AmazonSaleCommand object that the following arguments should be used in the foo object's constructor.

File: vendor/amzn/amazon-pay-module/etc/di.xml

<virtualType name="AmazonSettlementCommand"
             type="Amazon\Payment\Gateway\Command\AmazonAuthCommand">
    <arguments>
        <argument name="requestBuilder" xsi:type="object">
            Amazon\Payment\Gateway\Request\SettlementRequestBuilder
        </argument>
        <argument name="handler" xsi:type="object">
            Amazon\Payment\Gateway\Response\SettlementHandler
        </argument>
        <argument name="transferFactory" xsi:type="object">
            Amazon\Payment\Gateway\Http\TransferFactory
        </argument>
        <argument name="validator" xsi:type="object">
            AmazonAuthorizationValidators
        </argument>
        <argument name="client" xsi:type="object">
            Amazon\Payment\Gateway\Http\Client\SettlementClient
        </argument>
        <argument name="errorMessageMapper" xsi:type="object">
            Amazon\Payment\Gateway\ErrorMapper\VirtualErrorMessageMapper
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AmazonSettlementCommand object that it should return a Amazon\Payment\Gateway\Command\AmazonAuthCommand object.

This configuration tells the Object Manager that when a user wants a AmazonSettlementCommand object that the following arguments should be used in the foo object's constructor.