Configuration Platform SDK 7.6 API Reference

Package com.genesyslab.platform.configuration.protocol.confserver

This package contains classes based on the Genesys GEnum class.

See:
          Description

Class Summary
ConfServerAccessGroupType Deprecated. The enum has been deprecated.
ConfServerActionCodeType Deprecated. The enum has been deprecated.
ConfServerAlarmCategory Deprecated. The enum has been deprecated.
ConfServerAppComponentType Deprecated. The enum has been deprecated.
ConfServerCallActionCode Deprecated. The enum has been deprecated.
ConfServerCallMode Deprecated. The enum has been deprecated.
ConfServerCallState Deprecated. The enum has been deprecated.
ConfServerChargeType Deprecated. The enum has been deprecated.
ConfServerClientType Deprecated. The enum has been deprecated.
ConfServerContactType Deprecated. The enum has been deprecated.
ConfServerDataType Deprecated. The enum has been deprecated.
ConfServerDialMode Deprecated. The enum has been deprecated.
ConfServerDIDGroupType Deprecated. The enum has been deprecated.
ConfServerDNGroupType Deprecated. The enum has been deprecated.
ConfServerDNRegisterFlag Deprecated. The enum has been deprecated.
ConfServerDNType Deprecated. The enum has been deprecated.
ConfServerEnumeratorObjectType Deprecated. The enum has been deprecated.
ConfServerEnumeratorType Deprecated. The enum has been deprecated.
ConfServerEnumType Deprecated. The enum has been deprecated.
ConfServerErrorType Deprecated. The enum has been deprecated.
ConfServerFieldType Deprecated. The enum has been deprecated.
ConfServerFlag Deprecated. The enum has been deprecated.
ConfServerFolderClass Deprecated. The enum has been deprecated.
ConfServerGroupType Deprecated. The enum has been deprecated.
ConfServerHAType Deprecated. The enum has been deprecated.
ConfServerHostType Deprecated. The enum has been deprecated.
ConfServerIVRProfileType Deprecated. The enum has been deprecated.
ConfServerIVRType Deprecated. The enum has been deprecated.
ConfServerLanguage Deprecated. The enum has been deprecated.
ConfServerLinkType Deprecated. The enum has been deprecated.
ConfServerMediaType Deprecated. The enum has been deprecated.
ConfServerObjectiveTableType Deprecated. The enum has been deprecated.
ConfServerObjectProperty Deprecated. The enum has been deprecated.
ConfServerObjectState Deprecated. The enum has been deprecated.
ConfServerObjectType Deprecated. The enum has been deprecated.
ConfServerOperationalMode Deprecated. The enum has been deprecated.
ConfServerOperationMode Deprecated. The enum has been deprecated.
ConfServerOptimizationMethod Deprecated. The enum has been deprecated.
ConfServerOSType Deprecated. The enum has been deprecated.
ConfServerPackCodeType Deprecated. The enum has been deprecated.
ConfServerPermissions Deprecated. The enum has been deprecated.
ConfServerPersonType Deprecated. The enum has been deprecated.
ConfServerRank Deprecated. The enum has been deprecated.
ConfServerRecActionCode Deprecated. The enum has been deprecated.
ConfServerRecordStatus Deprecated. The enum has been deprecated.
ConfServerRecordType Deprecated. The enum has been deprecated.
ConfServerResourceType Deprecated. The enum has been deprecated.
ConfServerRouteType Deprecated. The enum has been deprecated.
ConfServerScriptType Deprecated. The enum has been deprecated.
ConfServerSelectionMode Deprecated. The enum has been deprecated.
ConfServerSolutionType Deprecated. The enum has been deprecated.
ConfServerStartupType Deprecated. The enum has been deprecated.
ConfServerStatDayType Deprecated. The enum has been deprecated.
ConfServerStatTableType Deprecated. The enum has been deprecated.
ConfServerStructureType Deprecated. The enum has been deprecated.
ConfServerSwitchType Deprecated. The enum has been deprecated.
ConfServerTableType Deprecated. The enum has been deprecated.
ConfServerTargetType Deprecated. The enum has been deprecated.
ConfServerTaskType Deprecated. The enum has been deprecated.
ConfServerTraceMode Deprecated. The enum has been deprecated.
ConfServerTransactionType Deprecated. The enum has been deprecated.
ConfServerUpdatePackageStatus Deprecated. The enum has been deprecated.
 

Package com.genesyslab.platform.configuration.protocol.confserver Description

This package contains classes based on the Genesys GEnum class. Your applications can use them to communicate intelligibly with Configuration Server.

For example, if you are trying to determine the type of an object, you can use the getValue method on the integer returned by Configuration Server, like this:


ConfServerObjectType objectType =
	(ConfServerObjectType) GEnum.getValue(ConfServerObjectType.class, 3);

You can then compare the result to values of the ConfServerObjectType enum to determine the object type.

By the same token, you need to pass an integer to Configuration Server when indicating the type of an object. For example, if you are working with an agent, which is known to Configuration Server as a Person, you could do the following:

ConfServerObjectType objectType = ConfServerObjectType.Person;
int intObjectType = objectType.asInteger();

For more information on these enums, look at the folder of Configuration Enumerations accessible from the Overview page of this API Reference. Note that the enums in this folder use a different naming convention. Those enums have names that start with “Cfg” instead of “ConfServer”. For example, to get information about the ConfServerObjectType enum, go to the entry for CfgObjectType in the Configuration Enumerations folder.


Configuration Platform SDK 7.6 API Reference

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