com.ibm.pim.extensionpoints
Interface DataEntryFunction


public interface DataEntryFunction

Interface that represents the function currently provided via the script extension point "Data Entry Additional Panel Script"

Configured via the 'data_entry_properties.xml' file within $TOP/etc/default

This function provides a way of customising data entry panels.

The user should implement one of the below methods depending on how the function is to be used.

Since:
6.0.0

Field Summary
static java.lang.String copyright
           
 
Method Summary
 java.lang.String getContent(DataEntryFunctionArguments inArgs)
          This method will be invoked by WPC.
 java.lang.String getURL(DataEntryFunctionArguments inArgs)
          This method will be invoked by WPC.
 

Field Detail

copyright

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

getURL

java.lang.String getURL(DataEntryFunctionArguments inArgs)
This method will be invoked by WPC.

Parameters:
inArgs - The arguments for this invocation.
Returns:
The url to be embedded in the data entry panel.
Equivalent in Script API:
equivalent to the 'getURL' method within the WPC script for data entry panel.

getContent

java.lang.String getContent(DataEntryFunctionArguments inArgs)
This method will be invoked by WPC.

Parameters:
inArgs - The arguments for this invocation.
Returns:
The content to be inserted in the data entry panel
Equivalent in Script API:
equivalent to the 'getContent' method within the WPC script for data entry panel.