The CWConnectorBOHandler class is the base class for the business object handlers of a Java connector. It provides the code to implement and access one business object handler. From this class, a connector developer must derive business-object-handler classes (as many as needed) and implement the doVerbFor() method for the business object handler.
An connector includes one or more business object handlers to perform tasks for the verbs in business objects. Depending on the active verb, a business object handler can insert business object data into an application, retrieve data, delete application data, or perform another task. For an introduction to request processing and business object handlers, see Request processing. For information on how to implement a business object handler, see Request processing.
Table 101 summarizes the methods in the CWConnectorBOHandler class.
Member method | Description | Page |
---|---|---|
CWConnectorBOHandler() | Creates a business-object-handler object. | CWConnectorBOHandler() |
doVerbFor() | Performs the verb processing for the active verb of a business object. | doVerbFor() |
getName() | Retrieves the name of the business-object-handler object. | getName() |
setName() | Sets the name of the business-object-handler object. | setName() |