Configuration Platform SDK 7.6 API Reference

Package com.genesyslab.platform.configuration.protocol

This package contains the Protocol classes that your applications can use to set up communication with Configuration Server.

See:
          Description

Class Summary
ConfServerContext  
ConfServerProtocol  
 

Package com.genesyslab.platform.configuration.protocol Description

This package contains the Protocol classes that your applications can use to set up communication with Configuration Server.

These classes include ConfServerProtocol.

When you write your applications, you will need to set up and open the appropriate Protocol object, as shown here:

ConfServerProtocol confServerProtocol =
  new ConfServerProtocol(
   new Endpoint(
    confServerUri));
confServerProtocol.setClientName(name);
confServerProtocol.setClientType(clientType);
confServerProtocol.setUserName(userName);
confServerProtocol.setUserPassword(userPassword);
confServerProtocol.open();

At that point you will be able to send and receive messages to the Configuration Server you have connected with.

For more information on these messages, please refer to the documentation for the events and requests packages associated with this SDK, for example com.genesyslab.platform.configuration.protocol.confserver.events or com.genesyslab.platform.configuration.protocol.confserver.requests.objects.

For information on configuration database objects, please refer to the folder of Configuration Objects available from the Overview of this API reference.

For general information on the structure and usage of the Platform SDKs, please refer to the Welcome page at the beginning of this guide.


Configuration Platform SDK 7.6 API Reference

Send comments on this topic.
Copyright © 2006–2008 Genesys Telecommunication Laboratories, Inc. All rights reserved.