UECONFIG

This table stores xC, eXtended Customization (previously known as UE, User Exit) configuration information for the customization framework.

Column Descriptions:

NameTypeDescription
UECONFIG_IDBIGINT NOT NULLThe unique identifier of the xC, eXtended Customization (previously known as UE, User Exit).
DESCRIPTIONVARCHAR (256)The description of the extended customization.
HTTPMETHODVARCHAR (10)The HTTP method used to invoke extended customization (candidate values could be: GET,PUT,POST and DELETE).
URLVARCHAR (512)The relative path of the extended customization URL.
REQUESTHANDLERVARCHAR (512)The request handler class name which implements com.ibm.commerce.foundation.ue.RequestHandler.
RESPONSEHANDLERVARCHAR (512)The response handler class name which implements com.ibm.commerce.foundation.ue.ResponseHandler.
PROPERTIESVARCHAR (512)A list of parameters separated by '&': Content-Type=The HTTP header content-type field value like application/json,text/plain.(default value is application/json).
RETRIABLESMALLINT DEFAULT 0Indicate whether the extended customization is retriable in case of failure. 1 means retriable, 0 means not retriable. default value is 0.
TIMEOUTINTEGERTimeout value of invoking of the extended customization.
FILTER_IDBIGINTID of the filter template used by the extended customization.
OPTCOUNTERSMALLINT NOT NULL DEFAULT 0Reserved for HCL internal use.

Indexes:

NameColumn NamesType
P_0039UECONFIG_IDPrimary Key