Event
messages that contain information
about the status of your requests.
RequestReadObjects
to ask for information
about objects in the Configuration Layer, you will receive one or more
EventObjectsRead
messages and an EventObjectsSent
message. You can use the getConfObjects()
method to retrieve an
XML Document
containing the information you asked for, as shown
here:
Message response = confServerProtocol.request(requestReadObjects);
switch(response.messageId())
{
case EventObjectsRead.ID:
// Object information has arrived, keep going...
case EventError.ID:
// There has been an error, go somewhere else...
...
}
EventObjectsRead eventObjectsRead = (EventObjectsRead) theMessage;
Document resultDocument =
(Document) eventObjectsRead.getConfObject();
For general information on the structure and usage of the Platform SDKs, or an introduction to the use of the Configuration Platform SDK, please refer to the introductory articles located in the Platform SDK Developer's Guide.
Class | Description |
---|---|
EventAccountRead | |
EventAccountUpdated | |
EventAuthenticated | |
EventBriefInfo | |
EventError | |
EventError2 | |
EventHistoryLogSent | |
EventLocaleRead |
Server response with information from data resource repository corresponding
to the requested LocaleID identifier.
For example:
|
EventLocaleSets |
Configuration Server response with information about configured localization sets.
It contains array with integer identifiers (LCID) of available LocaleSet's. Usage sample:
|
EventNotificationRegistered | |
EventNotificationUnregistered | |
EventObjectCreated | |
EventObjectDeleted | |
EventObjectPermissionsRead | |
EventObjectsRead |
Returns information about objects in the Genesys Configuration Layer.
|
EventObjectsSent |
Indicates that Configuration Server has finished sending data in response
to a
RequestReadObjects message. |
EventObjectUpdated | |
EventOperationalModeChanged | |
EventOperationalModeRead | |
EventPasswordChanged | |
EventPermissionsChanged | |
EventPermissionsNotificationRegistered | |
EventPermissionsNotificationUnregistered | |
EventPermissionsRead | |
EventPermissionsUpdated |
Send comments on this topicTechpubs.webadmin@genesys.com.
Document version: 9.0.006.00
Copyright © 2006–2019 Genesys Telecommunications Laboratories, Inc. All rights reserved.