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 boolean
canEqual(Object other)
boolean
equals(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.int
hashCode()
void
setFailedPayments(List<PaymentSummary> failedPayments)
List of payments that failed during processing.void
setFailureMessages(Map<String,String> failureMessages)
Map of payment ids to failures messages detailing what failed during processing.void
setSuccessfulPayments(List<PaymentSummary> successfulPayments)
List of payments that were successfully processed.String
toString()
-
-
-
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)
-
-