com.centrasite.control.adapters.listeners
Interface ImportVersionOptionListener

All Known Implementing Classes:
AbstractImportAdapter, SchemaImportAdapter, WebServiceImportAdapter

public interface ImportVersionOptionListener


Field Summary
static int OPTION_CREATE_NEW_ASSET
           
static int OPTION_CREATE_NEW_VERSION
           
static int OPTION_OVERWRITE_LATEST_VERSION
           
 
Method Summary
 void importVersionOptionCancel(java.lang.Object parameter)
          Called when user clicked Cancel button in ImportVersionOptionAdapter
 void importVersionOptionOK(int option, java.lang.Object parameter)
          Called when user clicked OK button in ImportVersionOptionAdapter.
 

Field Detail

OPTION_CREATE_NEW_VERSION

static final int OPTION_CREATE_NEW_VERSION
See Also:
Constant Field Values

OPTION_OVERWRITE_LATEST_VERSION

static final int OPTION_OVERWRITE_LATEST_VERSION
See Also:
Constant Field Values

OPTION_CREATE_NEW_ASSET

static final int OPTION_CREATE_NEW_ASSET
See Also:
Constant Field Values
Method Detail

importVersionOptionOK

void importVersionOptionOK(int option,
                           java.lang.Object parameter)
Called when user clicked OK button in ImportVersionOptionAdapter.

Parameters:
option - The selected option, either OPTION_CREATE_NEW_VERSION or OPTION_OVERWRITE_LATEST_VERSION.
parameter - A user defined parameter passed through from show method.

importVersionOptionCancel

void importVersionOptionCancel(java.lang.Object parameter)
Called when user clicked Cancel button in ImportVersionOptionAdapter

Parameters:
parameter - A user defined parameter passed through from show method.