com.ibm.pim.extensionpoints
Interface PrePostProcessingFunction


public interface PrePostProcessingFunction

Interface that represents the Pre & Post Processing function

Since:
6.0.0
Equivalent in Script API:
the script extension point "Pre & Post Processing Script"

Field Summary
static java.lang.String copyright
           
 
Method Summary
 void prePostProcessing(CategoryPrePostProcessingFunctionArguments inArgs)
          Perform Pre or Post Processing for category.
 void prePostProcessing(CollaborationCategoryPrePostProcessingFunctionArguments inArgs)
          Perform Pre or Post Processing for collaboration category.
 void prePostProcessing(CollaborationItemPrePostProcessingFunctionArguments inArgs)
          Perform Pre or Post Processing for collaboration item.
 void prePostProcessing(ItemPrePostProcessingFunctionArguments inArgs)
          Perform Pre or Post Processing for item.
 

Field Detail

copyright

static final java.lang.String copyright
See Also:
Constant Field Values
Method Detail

prePostProcessing

void prePostProcessing(ItemPrePostProcessingFunctionArguments inArgs)
Perform Pre or Post Processing for item.

The type of processing depends on where the class is set within WPC as either a Pre Processing, or Post Processing function.

Parameters:
inArgs - the arguments for this invocation.

prePostProcessing

void prePostProcessing(CategoryPrePostProcessingFunctionArguments inArgs)
Perform Pre or Post Processing for category.

The type of processing depends on where the class is set within WPC as either a Pre Processing, or Post Processing function.

Parameters:
inArgs - the arguments for this invocation.

prePostProcessing

void prePostProcessing(CollaborationItemPrePostProcessingFunctionArguments inArgs)
Perform Pre or Post Processing for collaboration item.

The type of processing depends on where the class is set within WPC as either a Pre Processing, or Post Processing function.

Parameters:
inArgs - the arguments for this invocation.

prePostProcessing

void prePostProcessing(CollaborationCategoryPrePostProcessingFunctionArguments inArgs)
Perform Pre or Post Processing for collaboration category.

The type of processing depends on where the class is set within WPC as either a Pre Processing, or Post Processing function.

Parameters:
inArgs - the arguments for this invocation.