Summary: This section presents the design and use of the Connector Application Block.
The Connector Application Block presents a single class, that is, the
MILQILBootstrapper
class. This class shows how to initialize
the OMSDKConnector instance with both QIL and MIL parameters.
To connect to the Genesys Framework, the instance parses the arguments passed at the application's creation. The main method shows how to create and launch the bootstrapper.
MILQILBootstrapper bootstrapper
= new MILQILBootstrapper();
try {
// parse startup params
bootstrapper.parseArguments(args);
// run
bootstrapper.run();
} catch (MandatoryParamMissingException mpme) {
//...
}