Interface PaymentRequestDTOService

All Known Implementing Classes:
PaymentRequestDTOServiceImpl

public interface PaymentRequestDTOService
Author:
Chris Kittrell (ckittrell)
  • Method Summary

    Modifier and Type
    Method
    Description
    org.broadleafcommerce.common.payment.dto.PaymentRequestDTO
    populateCustomerInfo(org.broadleafcommerce.common.payment.dto.PaymentRequestDTO requestDTO, org.broadleafcommerce.profile.core.domain.Customer customer)
    Uses customer information to populate the PaymentRequestDTO.customer() object
    org.broadleafcommerce.common.payment.dto.PaymentRequestDTO
    populateCustomerInfo(org.broadleafcommerce.common.payment.dto.PaymentRequestDTO requestDTO, org.broadleafcommerce.profile.core.domain.Customer customer, String defaultEmailAddress)
    Uses customer information to populate the PaymentRequestDTO.customer() object
  • Method Details

    • populateCustomerInfo

      org.broadleafcommerce.common.payment.dto.PaymentRequestDTO populateCustomerInfo(org.broadleafcommerce.common.payment.dto.PaymentRequestDTO requestDTO, org.broadleafcommerce.profile.core.domain.Customer customer)
      Uses customer information to populate the PaymentRequestDTO.customer() object
      Parameters:
      requestDTO - the PaymentRequestDTO that should be populated
      customer - the Customer to get data from
    • populateCustomerInfo

      org.broadleafcommerce.common.payment.dto.PaymentRequestDTO populateCustomerInfo(org.broadleafcommerce.common.payment.dto.PaymentRequestDTO requestDTO, org.broadleafcommerce.profile.core.domain.Customer customer, String defaultEmailAddress)
      Uses customer information to populate the PaymentRequestDTO.customer() object
      Parameters:
      requestDTO - the PaymentRequestDTO that should be populated
      customer - the Customer to get data from
      defaultEmailAddress - the default email address to use if Customer.getEmailAddress() returns `null`