Interface PaymentTransactionResultAuditService<P extends PaymentTransactionResultAudit>
- Type Parameters:
P
- The projection domain type, a subtype ofPaymentTransactionResultAudit
- All Superinterfaces:
com.broadleafcommerce.data.tracking.core.service.CrudEntityService<P>
,com.broadleafcommerce.data.tracking.core.service.RsqlCrudEntityService<P>
- All Known Implementing Classes:
DefaultPaymentTransactionResultAuditService
public interface PaymentTransactionResultAuditService<P extends PaymentTransactionResultAudit>
extends com.broadleafcommerce.data.tracking.core.service.RsqlCrudEntityService<P>
Service API for
PaymentTransactionResultAudit
.- Since:
- Payment Transaction Service 2.0.6, Release Train 2.1.4, Release Train 2.2.0
-
Method Summary
Modifier and TypeMethodDescriptionreadAllByPaymentTransactionId
(String paymentTransactionId, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Retrieve payment transaction result audit details for the givenPaymentTransaction
ID.Methods inherited from interface com.broadleafcommerce.data.tracking.core.service.CrudEntityService
create, createAll, createAllAllowingPartialSuccess, delete, readAll, readAll, readAll, readAllByContextId, readByContextId, replace, replaceAll, replaceAllAllowingPartialSuccess, update, updateAll, updateAllAllowingPartialSuccess, updateSort
Methods inherited from interface com.broadleafcommerce.data.tracking.core.service.RsqlCrudEntityService
readAll, readAll, readAll, readAll
-
Method Details
-
readAllByPaymentTransactionId
List<P> readAllByPaymentTransactionId(String paymentTransactionId, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Retrieve payment transaction result audit details for the givenPaymentTransaction
ID.- Parameters:
paymentTransactionId
- the ID of thePaymentTransaction
whose historical results should be foundcontextInfo
- context information around sandbox and multitenant state- Returns:
- a list of the payment transaction results associated with the given payment transaction ID
-