Interface FollowOnRefundCommand<T extends AbstractRequest>
-
- All Superinterfaces:
Command<T,RefundResult>
- All Known Implementing Classes:
FollowOnRefundMockCommand
public interface FollowOnRefundCommand<T extends AbstractRequest> extends Command<T,RefundResult>
Command for handling follow-on refunds. Follow-on refund means to return back money to customer account associated with order or previous transaction. It is contrary to stand-alone refundStandaloneRefundCommand
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RefundResultperform(T request)perform command for a given request R
-
-
-
Method Detail
-
perform
RefundResult perform(T request)
Description copied from interface:Commandperform command for a given request R- Specified by:
performin interfaceCommand<T extends AbstractRequest,RefundResult>- Parameters:
request- request to perform- Returns:
- outcome O of command
-
-