Class UpdatePaymentsResponse
- java.lang.Object
-
- com.broadleafcommerce.cartoperation.service.provider.external.domain.payment.UpdatePaymentsResponse
-
- All Implemented Interfaces:
Serializable
public class UpdatePaymentsResponse extends Object implements Serializable
Response object describing the successful and failedpayment summaries.- Author:
- Marie Standeven (marieStandeven)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdatePaymentsResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)List<PaymentSummary>getFailedPayments()List of payments that failed during processing.Map<String,String>getFailureMessages()Map of payment ids to failures messages detailing what failed during processing.List<PaymentSummary>getSuccessfulPayments()List of payments that were successfully processed.inthashCode()voidsetFailedPayments(List<PaymentSummary> failedPayments)List of payments that failed during processing.voidsetFailureMessages(Map<String,String> failureMessages)Map of payment ids to failures messages detailing what failed during processing.voidsetSuccessfulPayments(List<PaymentSummary> successfulPayments)List of payments that were successfully processed.StringtoString()
-
-
-
Method Detail
-
getSuccessfulPayments
public List<PaymentSummary> getSuccessfulPayments()
List of payments that were successfully processed.
-
getFailedPayments
public List<PaymentSummary> getFailedPayments()
List of payments that failed during processing.
-
getFailureMessages
public Map<String,String> getFailureMessages()
Map of payment ids to failures messages detailing what failed during processing.
-
setSuccessfulPayments
public void setSuccessfulPayments(List<PaymentSummary> successfulPayments)
List of payments that were successfully processed.
-
setFailedPayments
public void setFailedPayments(List<PaymentSummary> failedPayments)
List of payments that failed during processing.
-
setFailureMessages
public void setFailureMessages(Map<String,String> failureMessages)
Map of payment ids to failures messages detailing what failed during processing.
-
canEqual
protected boolean canEqual(Object other)
-
-