com.ibm.pim.extensionpoints
Interface PostCollaborationCategorySaveFunctionArguments


public interface PostCollaborationCategorySaveFunctionArguments

Interface defining the arguments passed to invocation invocations.

Since:
6.0.0

Field Summary
static java.lang.String copyright
           
 
Method Summary
 CollaborationCategory getCollaborationCategory()
          Obtains the current category for this invocation.
 CollaborationStep getCollaborationStep()
          Obtains the collaboration step for this RuleFunction.
 java.io.PrintWriter getErrors()
          Obtains access to the writer for error output created by this invocation.
 java.io.PrintWriter getOutput()
          Obtains access to the writer for output created by this invocation.
 java.lang.String getSaveEvent()
          Obtains the save event for this invocation.
 java.io.PrintWriter getWarnings()
          Obtains access to the writer for warning output created by this invocation.
 

Field Detail

copyright

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

getOutput

java.io.PrintWriter getOutput()
Obtains access to the writer for output created by this invocation.

Equivalent in Script API:
Equivalent to the script 'out' writer within the corresponding type of script.

getErrors

java.io.PrintWriter getErrors()
Obtains access to the writer for error output created by this invocation.

Equivalent in Script API:
Equivalent to the script 'err' writer within the corresponding type of script.

getWarnings

java.io.PrintWriter getWarnings()
Obtains access to the writer for warning output created by this invocation.

Equivalent in Script API:
Equivalent to the script 'wrn' writer within the corresponding type of script.

getCollaborationCategory

CollaborationCategory getCollaborationCategory()
Obtains the current category for this invocation.


getSaveEvent

java.lang.String getSaveEvent()
Obtains the save event for this invocation. Save event will be one of:


getCollaborationStep

CollaborationStep getCollaborationStep()
Obtains the collaboration step for this RuleFunction.