Uses of Enum Class
com.broadleafcommerce.billing.domain.PaymentStatusEnum
Packages that use PaymentStatusEnum
Package
Description
-
Uses of PaymentStatusEnum in com.broadleafcommerce.billing.domain
Methods in com.broadleafcommerce.billing.domain that return PaymentStatusEnumModifier and TypeMethodDescriptionBillingEventPayment.getPaymentStatus()The payment status of the BillingEventPayment.static PaymentStatusEnumReturns the enum constant of this class with the specified name.static PaymentStatusEnum[]PaymentStatusEnum.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.broadleafcommerce.billing.domain with parameters of type PaymentStatusEnumModifier and TypeMethodDescriptionvoidBillingEventPayment.setPaymentStatus(PaymentStatusEnum paymentStatus) The payment status of the BillingEventPayment.Constructors in com.broadleafcommerce.billing.domain with parameters of type PaymentStatusEnumModifierConstructorDescriptionBillingEventPayment(String id, String billingEventId, String paymentProcessType, PaymentStatusEnum paymentStatus, BigDecimal paymentAmount, String preferredPaymentAccountId, String retryScheduleCode, Date nextRetryDate, Integer remainingRetryCount, Integer attemptCount, Date createdDate, Integer version, com.broadleafcommerce.data.tracking.core.filtering.business.domain.ContextState contextState) -
Uses of PaymentStatusEnum in com.broadleafcommerce.billing.job.domain
Methods in com.broadleafcommerce.billing.job.domain that return PaymentStatusEnumModifier and TypeMethodDescriptionBillingEventPaymentProcessedEvent.getPaymentStatus()The status of the payment after the processing.Methods in com.broadleafcommerce.billing.job.domain with parameters of type PaymentStatusEnumModifier and TypeMethodDescriptionvoidBillingEventPaymentProcessedEvent.setPaymentStatus(PaymentStatusEnum paymentStatus) The status of the payment after the processing.Constructors in com.broadleafcommerce.billing.job.domain with parameters of type PaymentStatusEnumModifierConstructorDescriptionBillingEventPaymentProcessedEvent(String eventPaymentId, PaymentStatusEnum paymentStatus, Date nextRetryDate, Integer remainingRetryCount, String subscriptionRef, Date transactionDateTime) -
Uses of PaymentStatusEnum in com.broadleafcommerce.billing.job.module
Fields in com.broadleafcommerce.billing.job.module with type parameters of type PaymentStatusEnumModifier and TypeFieldDescriptionprotected static Set<PaymentStatusEnum>EventPaymentUpdater.expectedStatuses -
Uses of PaymentStatusEnum in com.broadleafcommerce.billing.provider.jpa.repository
Methods in com.broadleafcommerce.billing.provider.jpa.repository with parameters of type PaymentStatusEnumModifier and TypeMethodDescriptionJpaCustomizedBillingEventPaymentRepository.findByPaymentStatusAndDateRange(PaymentStatusEnum status, Date startDate, Date endDate, org.springframework.data.domain.Pageable resultLimit, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) JpaCustomizedBillingEventPaymentRepository.findByPaymentStatusAndProcessTypeAndDateRange(PaymentStatusEnum status, String paymentProcessType, Date startDate, Date endDate, org.springframework.data.domain.Pageable resultLimit, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) JpaCustomizedBillingEventPaymentRepository.findByPaymentStatusAndRetryDateRange(PaymentStatusEnum status, Date startDate, Date endDate, org.springframework.data.domain.Pageable resultLimit, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) -
Uses of PaymentStatusEnum in com.broadleafcommerce.billing.repository
Methods in com.broadleafcommerce.billing.repository with parameters of type PaymentStatusEnumModifier and TypeMethodDescriptionCustomizedBillingEventPaymentRepository.findAllPaymentsByStatusAndDatesRange(PaymentStatusEnum status, Date startDate, Date endDate, org.springframework.data.domain.Pageable resultLimit) Deprecated.CustomizedBillingEventPaymentRepository.findAllPaymentsByStatusAndRetryDateRange(PaymentStatusEnum status, Date startDate, Date endDate, org.springframework.data.domain.Pageable resultLimit) CustomizedBillingEventPaymentRepository.findByPaymentStatusAndDateRange(PaymentStatusEnum status, Date startDate, Date endDate, org.springframework.data.domain.Pageable resultLimit, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) CustomizedBillingEventPaymentRepository.findByPaymentStatusAndProcessTypeAndDateRange(PaymentStatusEnum status, String paymentProcessType, Date startDate, Date endDate, org.springframework.data.domain.Pageable resultLimit, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) CustomizedBillingEventPaymentRepository.findByPaymentStatusAndRetryDateRange(PaymentStatusEnum status, Date startDate, Date endDate, org.springframework.data.domain.Pageable resultLimit, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Find all theJpaBillingEventPaymentwhose Retry Date falls between startDate and endDate -
Uses of PaymentStatusEnum in com.broadleafcommerce.billing.service
Methods in com.broadleafcommerce.billing.service with parameters of type PaymentStatusEnumModifier and TypeMethodDescriptionBillingEventPaymentService.findAllPaymentsByStatusAndDatesRange(PaymentStatusEnum status, Date startDate, Date endDate, Integer resultLimit, Integer pageNumber) BillingEventPaymentService.findAllPaymentsByStatusAndRetryDateRange(PaymentStatusEnum status, Date startDate, Date endDate, Integer resultLimit) BillingEventPaymentService.readAllByStatusAndDatesRange(PaymentStatusEnum status, Date startDate, Date endDate, Integer resultLimit, Integer pageNumber, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) BillingEventPaymentService.readAllByStatusAndProcessTypeAndDatesRange(PaymentStatusEnum status, String paymentProcessType, Date startDate, Date endDate, Integer resultLimit, Integer pageNumber, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) BillingEventPaymentService.readByStatusAndRetryDateRange(PaymentStatusEnum status, Date startDate, Date endDate, Integer resultLimit, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) -
Uses of PaymentStatusEnum in com.broadleafcommerce.billing.service.impl
Methods in com.broadleafcommerce.billing.service.impl with parameters of type PaymentStatusEnumModifier and TypeMethodDescriptionDefaultBillingEventPaymentService.readAllByStatusAndDatesRange(PaymentStatusEnum status, Date startDate, Date endDate, Integer resultLimit, Integer pageNumber, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) DefaultBillingEventPaymentService.readAllByStatusAndProcessTypeAndDatesRange(PaymentStatusEnum status, String paymentProcessType, Date startDate, Date endDate, Integer resultLimit, Integer pageNumber, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) DefaultBillingEventPaymentService.readByStatusAndRetryDateRange(PaymentStatusEnum status, Date startDate, Date endDate, Integer resultLimit, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
CustomizedBillingEventPaymentRepository.findByPaymentStatusAndDateRange(PaymentStatusEnum, Date, Date, Pageable, ContextInfo)instead