Uses of Class
de.hybris.platform.payment.model.PaymentTransactionModel
-
Packages that use PaymentTransactionModel Package Description de.hybris.platform.acceleratorservices.payment.cybersource.strategies.impl de.hybris.platform.chinesepaymentmock.facades.checkout de.hybris.platform.core.model.order Contains generated models for each type of de.hybris.platform.jalo.order package.de.hybris.platform.ordermanagementfacades.order.converters.populator de.hybris.platform.ordermanagementfacades.payment.converters.populator de.hybris.platform.payment de.hybris.platform.payment.impl de.hybris.platform.payment.model Contains generated models for each type of de.hybris.platform.payment.jalo package.de.hybris.platform.payment.strategy de.hybris.platform.payment.strategy.impl de.hybris.platform.warehousing.util.builder de.hybris.platform.warehousing.util.models de.hybris.platform.yacceleratorfulfilmentprocess.actions.order de.hybris.platform.yacceleratorfulfilmentprocess.test de.hybris.platform.yacceleratorordermanagement.integration.util -
-
Uses of PaymentTransactionModel in de.hybris.platform.acceleratorservices.payment.cybersource.strategies.impl
Methods in de.hybris.platform.acceleratorservices.payment.cybersource.strategies.impl with parameters of type PaymentTransactionModel Modifier and Type Method Description protected booleanDefaultPaymentTransactionStrategy. checkIfAuthorizationWaitForReview(PaymentTransactionModel transaction) -
Uses of PaymentTransactionModel in de.hybris.platform.chinesepaymentmock.facades.checkout
Methods in de.hybris.platform.chinesepaymentmock.facades.checkout with parameters of type PaymentTransactionModel Modifier and Type Method Description protected java.util.List<PaymentTransactionEntryModel>ChinesePaymentMockCheckoutFacade. createTransactionEntriesForOrder(OrderModel orderModel, PaymentTransactionModel transaction)protected PaymentTransactionEntryModelChinesePaymentMockCheckoutFacade. createTransactionEntry(OrderModel orderModel, PaymentTransactionModel transaction, PaymentTransactionType paymentTransactionType) -
Uses of PaymentTransactionModel in de.hybris.platform.core.model.order
Methods in de.hybris.platform.core.model.order that return types with arguments of type PaymentTransactionModel Modifier and Type Method Description java.util.List<PaymentTransactionModel>AbstractOrderModel. getPaymentTransactions()Generated method - Getter of theAbstractOrder.paymentTransactionsattribute defined at extensionpayment.Method parameters in de.hybris.platform.core.model.order with type arguments of type PaymentTransactionModel Modifier and Type Method Description voidAbstractOrderModel. setPaymentTransactions(java.util.List<PaymentTransactionModel> value)Generated method - Setter ofAbstractOrder.paymentTransactionsattribute defined at extensionpayment. -
Uses of PaymentTransactionModel in de.hybris.platform.ordermanagementfacades.order.converters.populator
Methods in de.hybris.platform.ordermanagementfacades.order.converters.populator that return types with arguments of type PaymentTransactionModel Modifier and Type Method Description protected Converter<PaymentTransactionData,PaymentTransactionModel>OrderRequestReversePopulator. getPaymentTransactionReverseConverter()Method parameters in de.hybris.platform.ordermanagementfacades.order.converters.populator with type arguments of type PaymentTransactionModel Modifier and Type Method Description voidOrderRequestReversePopulator. setPaymentTransactionReverseConverter(Converter<PaymentTransactionData,PaymentTransactionModel> paymentTransactionReverseConverter) -
Uses of PaymentTransactionModel in de.hybris.platform.ordermanagementfacades.payment.converters.populator
Methods in de.hybris.platform.ordermanagementfacades.payment.converters.populator with parameters of type PaymentTransactionModel Modifier and Type Method Description voidPaymentTransactionReversePopulator. populate(PaymentTransactionData source, PaymentTransactionModel target) -
Uses of PaymentTransactionModel in de.hybris.platform.payment
Methods in de.hybris.platform.payment that return PaymentTransactionModel Modifier and Type Method Description PaymentTransactionModelPaymentService. getPaymentTransaction(java.lang.String code)GetPaymentTransactionModelby codeMethods in de.hybris.platform.payment with parameters of type PaymentTransactionModel Modifier and Type Method Description voidPaymentService. attachPaymentInfo(PaymentTransactionModel paymentTransactionModel, UserModel userModel, CardInfo cardInfo, java.math.BigDecimal amount)Attaches PaymentInfo to the assigned PaymentTransactionModel instance.PaymentTransactionEntryModelPaymentService. authorize(PaymentTransactionModel transaction, java.math.BigDecimal amount, java.util.Currency currency, AddressModel deliveryAddress, AddressModel paymentAddress, CardInfo card)authorize paymentPaymentTransactionEntryModelPaymentService. authorize(PaymentTransactionModel transaction, java.math.BigDecimal amount, java.util.Currency currency, AddressModel deliveryAddress, java.lang.String subscriptionID)authorize paymentPaymentTransactionEntryModelPaymentService. authorize(PaymentTransactionModel transaction, java.math.BigDecimal amount, java.util.Currency currency, AddressModel deliveryAddress, java.lang.String subscriptionID, java.lang.String paymentProvider)authorize paymentPaymentTransactionEntryModelPaymentService. capture(PaymentTransactionModel transaction)capture paymentNewSubscriptionPaymentService. createSubscription(PaymentTransactionModel transaction, AddressModel paymentAddress, CardInfo card)Creates a subscription at the payment provider side and stores sensitive data there.java.lang.StringPaymentService. getNewPaymentTransactionEntryCode(PaymentTransactionModel transaction, PaymentTransactionType paymentTransactionType)A new code for aPaymentTransactionEntryModelbased on thePaymentTransactionModelassociated to it and the number of entries.PaymentTransactionEntryModelPaymentService. partialCapture(PaymentTransactionModel transaction, java.math.BigDecimal amount)Take a partial capture of authorized transactionPaymentTransactionEntryModelPaymentService. refundFollowOn(PaymentTransactionModel transaction, java.math.BigDecimal amount)Refund transaction -
Uses of PaymentTransactionModel in de.hybris.platform.payment.impl
Methods in de.hybris.platform.payment.impl that return PaymentTransactionModel Modifier and Type Method Description PaymentTransactionModelDefaultPaymentServiceImpl. getPaymentTransaction(java.lang.String code)GetPaymentTransactionModelby codeMethods in de.hybris.platform.payment.impl with parameters of type PaymentTransactionModel Modifier and Type Method Description voidDefaultPaymentServiceImpl. attachPaymentInfo(PaymentTransactionModel paymentTransactionModel, UserModel userModel, CardInfo cardInfo, java.math.BigDecimal amount)Attaches PaymentInfo to the assigned PaymentTransactionModel instance by using the configured PaymentInfoCreatorStrategy.PaymentTransactionEntryModelDefaultPaymentServiceImpl. authorize(PaymentTransactionModel transaction, java.math.BigDecimal amount, java.util.Currency currency, AddressModel deliveryAddress, AddressModel paymentAddress, CardInfo card)authorize payment
note: the code of the assigned payment transaction will be used as code-basecode during thePaymentTransactionEntryModel.CODEcode generation process, which represents the main benefit of this method.PaymentTransactionEntryModelDefaultPaymentServiceImpl. authorize(PaymentTransactionModel transaction, java.math.BigDecimal amount, java.util.Currency currency, AddressModel deliveryAddress, java.lang.String subscriptionID)PaymentTransactionEntryModelDefaultPaymentServiceImpl. authorize(PaymentTransactionModel transaction, java.math.BigDecimal amount, java.util.Currency currency, AddressModel deliveryAddress, java.lang.String subscriptionID, java.lang.String paymentprovider)authorize payment
note: the code of the assigned payment transaction will be used as code-basecode during thePaymentTransactionEntryModel.CODEcode generation process, which represents the main benefit of this method.protected PaymentTransactionEntryModelDefaultPaymentServiceImpl. authorizeInternal(PaymentTransactionModel transaction, java.math.BigDecimal amount, java.util.Currency currency, BillingInfo shippingInfo, CardInfo card, java.lang.String subscriptionID, java.lang.String cv2, java.lang.String paymentProvider)...PaymentTransactionEntryModelDefaultPaymentServiceImpl. capture(PaymentTransactionModel transaction)NewSubscriptionDefaultPaymentServiceImpl. createSubscription(PaymentTransactionModel transaction, AddressModel paymentAddress, CardInfo card)java.lang.StringDefaultPaymentServiceImpl. getNewPaymentTransactionEntryCode(PaymentTransactionModel transaction, PaymentTransactionType paymentTransactionType)Generate new merchant transaction code for payment transaction entries based on code for whole transactionPaymentTransactionEntryModelDefaultPaymentServiceImpl. partialCapture(PaymentTransactionModel transaction, java.math.BigDecimal amount)PaymentTransactionEntryModelDefaultPaymentServiceImpl. refundFollowOn(PaymentTransactionModel transaction, java.math.BigDecimal amount) -
Uses of PaymentTransactionModel in de.hybris.platform.payment.model
Subclasses of PaymentTransactionModel in de.hybris.platform.payment.model Modifier and Type Class Description classAlipayPaymentTransactionModelGenerated model class for type AlipayPaymentTransaction first defined at extension chinesepspalipayservices.classWeChatPayPaymentTransactionModelGenerated model class for type WeChatPayPaymentTransaction first defined at extension chinesepspwechatpayservices.Methods in de.hybris.platform.payment.model that return PaymentTransactionModel Modifier and Type Method Description PaymentTransactionModelPaymentTransactionEntryModel. getPaymentTransaction()Generated method - Getter of thePaymentTransactionEntry.paymentTransactionattribute defined at extensionpayment.Methods in de.hybris.platform.payment.model with parameters of type PaymentTransactionModel Modifier and Type Method Description voidPaymentTransactionEntryModel. setPaymentTransaction(PaymentTransactionModel value)Generated method - Setter ofPaymentTransactionEntry.paymentTransactionattribute defined at extensionpayment. -
Uses of PaymentTransactionModel in de.hybris.platform.payment.strategy
Methods in de.hybris.platform.payment.strategy with parameters of type PaymentTransactionModel Modifier and Type Method Description voidPaymentInfoCreatorStrategy. attachPaymentInfo(PaymentTransactionModel paymentTransactionModel, UserModel userModel, CardInfo cardInfo, java.math.BigDecimal amount)Attaches PaymentInfo to the assigned PaymentTransactionModel instance. -
Uses of PaymentTransactionModel in de.hybris.platform.payment.strategy.impl
Methods in de.hybris.platform.payment.strategy.impl with parameters of type PaymentTransactionModel Modifier and Type Method Description voidDefaultCreditCardPaymentInfoStrategy. attachPaymentInfo(PaymentTransactionModel paymentTransactionModel, UserModel userModel, CardInfo cardInfo, java.math.BigDecimal amount)Attaches PaymentInfo to the assigned PaymentTransactionModel instance. -
Uses of PaymentTransactionModel in de.hybris.platform.warehousing.util.builder
Methods in de.hybris.platform.warehousing.util.builder that return PaymentTransactionModel Modifier and Type Method Description PaymentTransactionModelPaymentTransactionModelBuilder. build()Method parameters in de.hybris.platform.warehousing.util.builder with type arguments of type PaymentTransactionModel Modifier and Type Method Description OrderModelBuilderOrderModelBuilder. withPaymentTransactions(java.util.List<PaymentTransactionModel> paymentTransactions) -
Uses of PaymentTransactionModel in de.hybris.platform.warehousing.util.models
Methods in de.hybris.platform.warehousing.util.models that return PaymentTransactionModel Modifier and Type Method Description PaymentTransactionModelPaymentTransactions. CreditCardTransaction()Methods in de.hybris.platform.warehousing.util.models that return types with arguments of type PaymentTransactionModel Modifier and Type Method Description protected WarehousingDao<PaymentTransactionModel>PaymentTransactions. getPaymentTransactionDao()Method parameters in de.hybris.platform.warehousing.util.models with type arguments of type PaymentTransactionModel Modifier and Type Method Description voidPaymentTransactions. setPaymentTransactionDao(WarehousingDao<PaymentTransactionModel> paymentTransactionDao) -
Uses of PaymentTransactionModel in de.hybris.platform.yacceleratorfulfilmentprocess.actions.order
Methods in de.hybris.platform.yacceleratorfulfilmentprocess.actions.order with parameters of type PaymentTransactionModel Modifier and Type Method Description protected CheckTransactionReviewStatusAction.TransitionCheckTransactionReviewStatusAction. checkPaymentTransaction(PaymentTransactionModel transaction, OrderModel orderModel) -
Uses of PaymentTransactionModel in de.hybris.platform.yacceleratorfulfilmentprocess.test
Methods in de.hybris.platform.yacceleratorfulfilmentprocess.test that return PaymentTransactionModel Modifier and Type Method Description protected PaymentTransactionModelTakePaymentActionTest. createPaymentTransactionWithStatus(TransactionStatus transactionStatus) -
Uses of PaymentTransactionModel in de.hybris.platform.yacceleratorordermanagement.integration.util
Methods in de.hybris.platform.yacceleratorordermanagement.integration.util that return types with arguments of type PaymentTransactionModel Modifier and Type Method Description java.util.List<PaymentTransactionModel>BaseUtil. setDummyOrderTransaction(OrderModel orderModel)set dummy OrderTransaction into order
-