This table stores xC, eXtended Customization
(previously known as UE, User Exit) configuration information for
the customization framework.
Column Descriptions:
| Name | Type | Description |
| UECONFIG_ID | BIGINT NOT NULL | The unique identifier of the xC, eXtended
Customization (previously known as UE, User Exit). |
| DESCRIPTION | VARCHAR (256) | The description of the extended
customization. |
| HTTPMETHOD | VARCHAR (10) | The HTTP method used to invoke extended
customization (candidate values could be: GET,PUT,POST and
DELETE). |
| URL | VARCHAR (512) | The relative path of the extended customization
URL. |
| REQUESTHANDLER | VARCHAR (512) | The request handler class name which implements
com.ibm.commerce.foundation.ue.RequestHandler. |
| RESPONSEHANDLER | VARCHAR (512) | The response handler class name which implements
com.ibm.commerce.foundation.ue.ResponseHandler. |
| PROPERTIES | VARCHAR (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). |
| RETRIABLE | SMALLINT DEFAULT 0 | Indicate whether the extended customization is
retriable in case of failure. 1 means retriable, 0 means not
retriable. default value is 0. |
| TIMEOUT | INTEGER | Timeout value of invoking of the extended
customization. |
| FILTER_ID | BIGINT | ID of the filter template used by the extended
customization. |
| OPTCOUNTER | SMALLINT NOT NULL DEFAULT 0 | Reserved for HCL internal use. |
Indexes:
| Name | Column Names | Type |
| P_0039 | UECONFIG_ID | Primary Key |