com.vodafone360.people.engine.content
Interface TransferListener

All Known Implementing Classes:
ThumbnailHandler

public interface TransferListener

The TransferLister is an interface which has to be implemented by a ContentHandler. The ContentEngine will call the TransferComplete and TransferError methods after a Transfer ends.


Method Summary
 void transferComplete(ContentObject content)
          Called from ContentEngine when a transfer completes successfully.
 void transferError(ContentObject content, java.lang.RuntimeException exc)
          Called from ContentEngine when a transfer fails.
 

Method Detail

transferComplete

void transferComplete(ContentObject content)
Called from ContentEngine when a transfer completes successfully.

Parameters:
content - ContentObject containing the data

transferError

void transferError(ContentObject content,
                   java.lang.RuntimeException exc)
Called from ContentEngine when a transfer fails.

Parameters:
content - ContentObject containing the data
exc - Exception containing the cause


JavaDoc