Interface StandaloneRefundCommand<T extends AbstractRequest>
-
- All Superinterfaces:
Command<T,RefundResult>
- All Known Implementing Classes:
StandaloneRefundMockCommand
public interface StandaloneRefundCommand<T extends AbstractRequest> extends Command<T,RefundResult>
Command for handling stand-alone refunds. Stand-alone refund means to return back money to customer account not associated with any order or previous transactions. Just passes money from one account to another contrary toFollowOnRefundCommand
-
-
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
-
-