wt.transfer.delegate
Interface BasicTransferDelegate

All Superinterfaces:
TransferDelegate
All Known Implementing Classes:
AbstractTransferDelegate

public interface BasicTransferDelegate
extends TransferDelegate

Provides an interface that specifies methods to basically read and write one or a group of attributes. This interface can be implemented "as is" without further adaptation if a specialized delegate must handle special cases for both output and input.

Otherwise, the TransferDelegate interface is adapted by two abstract classes that provide either a means of only reading or writing, but not requiring the opposite. For example, these adapters may be useful where the standard delegate can be reused for reading purposes but the writing may require specialized access.



Supported API: false

Extendable: false


Method Summary
 void doExport(TransferOperation operation)
          

Supported API: false
 void doImport(TransferOperation operation)
          

Supported API: false
 
Methods inherited from interface wt.transfer.TransferDelegate
invoke
 

Method Detail

doExport

public void doExport(TransferOperation operation)
              throws WTException,
                     TransferDelegateException


Supported API: false

Parameters:
operation -
Throws:
WTException
TransferDelegateException

doImport

public void doImport(TransferOperation operation)
              throws WTException,
                     TransferDelegateException


Supported API: false

Parameters:
operation -
Throws:
WTException
TransferDelegateException