public interface TransferMethodRepository
Modifier and Type | Interface and Description |
---|---|
static interface |
TransferMethodRepository.DeactivateTransferMethodCallback
Callback interface that responses to action when invoked to
Deactivate transfer methods information
|
static interface |
TransferMethodRepository.LoadTransferMethodCallback
Callback interface that responses to action when invoked to
Load Transfer Method information
|
static interface |
TransferMethodRepository.LoadTransferMethodListCallback
Callback interface that responses to action when invoked to
Load transfer methods information
|
Modifier and Type | Method and Description |
---|---|
void |
createTransferMethod(TransferMethod transferMethod,
TransferMethodRepository.LoadTransferMethodCallback callback)
Create transfer method
|
void |
deactivateTransferMethod(TransferMethod transferMethod,
TransferMethodRepository.DeactivateTransferMethodCallback callback)
Deactivate transfer method specified.
|
void |
loadLatestTransferMethod(TransferMethodRepository.LoadTransferMethodCallback callback)
Load latest transfer methods available, associated with current context
|
void |
loadTransferMethods(TransferMethodRepository.LoadTransferMethodListCallback callback)
Load transfer methods available, associated with current context
|
void |
updateTransferMethod(TransferMethod transferMethod,
TransferMethodRepository.LoadTransferMethodCallback callback)
Update transfer method specified.
|
void createTransferMethod(TransferMethod transferMethod, TransferMethodRepository.LoadTransferMethodCallback callback)
transferMethod
- Transfer Method Representationcallback
- @see TransferMethodRepository.LoadTransferMethodCallback
void loadTransferMethods(TransferMethodRepository.LoadTransferMethodListCallback callback)
callback
- @see TransferMethodRepository.LoadTransferMethodListCallback
void updateTransferMethod(TransferMethod transferMethod, TransferMethodRepository.LoadTransferMethodCallback callback)
transferMethod
- transfer method to deactivate @see TransferMethod
callback
- @see TransferMethodRepository.DeactivateTransferMethodCallback
void loadLatestTransferMethod(TransferMethodRepository.LoadTransferMethodCallback callback)
callback
- @see TransferMethodRepository.LoadTransferMethodListCallback
void deactivateTransferMethod(TransferMethod transferMethod, TransferMethodRepository.DeactivateTransferMethodCallback callback)
transferMethod
- transfer method to deactivate @see TransferMethod
callback
- @see TransferMethodRepository.DeactivateTransferMethodCallback