Platform SDK Java 8.5 API Reference

Uses of Class
com.genesyslab.platform.applicationblocks.com.objects.CfgApplication

Packages that use CfgApplication
com.genesyslab.platform.applicationblocks.com.objects   
com.genesyslab.platform.applicationblocks.com.queries   
com.genesyslab.platform.apptemplate.configuration Provides helper classes that read application options and other data from Configuration Server, converts it to corresponding Platform SDK objects and makes it easier to set up connections to backend servers and other applications. 
 

Uses of CfgApplication in com.genesyslab.platform.applicationblocks.com.objects
 

Methods in com.genesyslab.platform.applicationblocks.com.objects that return CfgApplication
 CfgApplication CfgSolutionComponent.getApp()
          

A unique identifier of an Application with type appType and version appVersion Mandatory (application must be specified within solution) for solution components within a solution if isOptional is set to CFGFalse.

 CfgApplication CfgDetectEvent.getApp()
           
 CfgApplication CfgPersonLastLogin.getApplication()
           
 CfgApplication CfgDeltaPersonLastLogin.getApplication()
           
 CfgApplication CfgConnInfo.getAppServer()
          The unique identifier of the Server this application shall connect to as a client when it is started.
 CfgApplication CfgServer.getBackupServer()
          An identifier of the Server which is to be contacted if connection to this server fails.
 CfgApplication CfgTableAccess.getDbAccess()
          A unique identifier of the CfgApplication of type CFGDBServer (DB Access Point) through which the table can be accessed.
 CfgApplication CfgDeltaTableAccess.getDbAccess()
          A unique identifier of the CfgApplication of type CFGDBServer (DB Access Point) through which the table can be accessed.
 CfgApplication CfgCampaignGroupInfo.getDialer()
           
 CfgApplication CfgIVR.getIVRServer()
          A unique identifier of the CfgApplication of CfgIVRInterfaceServer type permanently associated to serve this IVR.
 CfgApplication CfgDeltaIVR.getIVRServer()
          A unique identifier of the CfgApplication of CfgIVRInterfaceServer type permanently associated to serve this IVR.
 CfgApplication CfgService.getSCS()
          

A unique identifier of an Application of CFGSCStype which is supposed to control the solution.

 CfgApplication CfgHost.getSCS()
          A unique identifier of an CfgApplication of CFGSCS type which is supposed to monitor/control this host.
 CfgApplication CfgDeltaService.getSCS()
          

A unique identifier of an Application of CFGSCStype which is supposed to control the solution.

 CfgApplication CfgDeltaHost.getSCS()
          A unique identifier of an CfgApplication of CFGSCS type which is supposed to monitor/control this host.
 CfgApplication CfgCampaignGroupInfo.getStatServer()
           
 CfgApplication CfgSwitch.getTServer()
          A unique identifier of the T-Server Application through which the telephony objects of this switch are controlled.
 CfgApplication CfgDeltaSwitch.getTServer()
          A unique identifier of the T-Server Application through which the telephony objects of this switch are controlled.
 CfgApplication CfgDeltaApplication.retrieveCfgApplication()
          Read base CfgApplication configuration object caused this event.
 

Methods in com.genesyslab.platform.applicationblocks.com.objects that return types with arguments of type CfgApplication
 java.util.Collection<CfgApplication> CfgDeltaCampaignGroup.getAddedServers()
          

A pointer to the list of unique identifiers to Application objects.

 java.util.Collection<CfgApplication> CfgDeltaCampaignGroup.getDeletedServers()
          A pointer to the list of deleted applications.
 java.util.Collection<CfgApplication> CfgCampaignGroup.getServers()
          

A pointer to the list of unique identifiers to Application objects.

 

Methods in com.genesyslab.platform.applicationblocks.com.objects with parameters of type CfgApplication
 void CfgSolutionComponent.setApp(CfgApplication value)
          

A unique identifier of an Application with type appType and version appVersion Mandatory (application must be specified within solution) for solution components within a solution if isOptional is set to CFGFalse.

 void CfgDetectEvent.setApp(CfgApplication value)
           
 void CfgPersonLastLogin.setApplication(CfgApplication value)
           
 void CfgConnInfo.setAppServer(CfgApplication value)
          The unique identifier of the Server this application shall connect to as a client when it is started.
 void CfgServer.setBackupServer(CfgApplication value)
          An identifier of the Server which is to be contacted if connection to this server fails.
 void CfgTableAccess.setDbAccess(CfgApplication value)
          A unique identifier of the CfgApplication of type CFGDBServer (DB Access Point) through which the table can be accessed.
 void CfgCampaignGroupInfo.setDialer(CfgApplication value)
           
 void CfgIVR.setIVRServer(CfgApplication value)
          A unique identifier of the CfgApplication of CfgIVRInterfaceServer type permanently associated to serve this IVR.
 void CfgService.setSCS(CfgApplication value)
          

A unique identifier of an Application of CFGSCStype which is supposed to control the solution.

 void CfgHost.setSCS(CfgApplication value)
          A unique identifier of an CfgApplication of CFGSCS type which is supposed to monitor/control this host.
 void CfgCampaignGroupInfo.setStatServer(CfgApplication value)
           
 void CfgSwitch.setTServer(CfgApplication value)
          A unique identifier of the T-Server Application through which the telephony objects of this switch are controlled.
 

Method parameters in com.genesyslab.platform.applicationblocks.com.objects with type arguments of type CfgApplication
 void CfgCampaignGroup.setServers(java.util.Collection<CfgApplication> value)
          

A pointer to the list of unique identifiers to Application objects.

 

Uses of CfgApplication in com.genesyslab.platform.applicationblocks.com.queries
 

Methods in com.genesyslab.platform.applicationblocks.com.queries that return CfgApplication
 CfgApplication CfgApplicationQuery.executeSingleResult()
          Executes a query the result of which is a single object.
 

Methods in com.genesyslab.platform.applicationblocks.com.queries that return types with arguments of type CfgApplication
 AsyncRequestResult<CfgApplication> CfgApplicationQuery.beginExecute(Action<AsyncRequestResult<CfgApplication>> callback, java.lang.Object state)
          Begins the asynchronous execution of the current query.
 java.util.Collection<CfgApplication> CfgApplicationQuery.execute()
          Executes the query and returns a list of CfgApplication objects.
 

Method parameters in com.genesyslab.platform.applicationblocks.com.queries with type arguments of type CfgApplication
 AsyncRequestResult<CfgApplication> CfgApplicationQuery.beginExecute(Action<AsyncRequestResult<CfgApplication>> callback, java.lang.Object state)
          Begins the asynchronous execution of the current query.
 

Uses of CfgApplication in com.genesyslab.platform.apptemplate.configuration
 

Methods in com.genesyslab.platform.apptemplate.configuration that return CfgApplication
 CfgApplication GCOMApplicationConfiguration.getCfgApplication()
          Returns reference to the original CfgApplication object as source of initial configuration properties values.
 

Constructors in com.genesyslab.platform.apptemplate.configuration with parameters of type CfgApplication
GCOMApplicationConfiguration(CfgApplication cfgApplication)
          Loads application configuration properties from given COM AB CfgApplication object including configuration of connected CfgApplication's and CfgHost's.
GCOMApplicationConfiguration(CfgApplication cfgApplication, boolean readConnections)
          Loads application configuration properties from given COM AB CfgApplication object including configuration of connected CfgApplication's and CfgHost's.
GCOMApplicationConfiguration(CfgApplication cfgApplication, boolean readConnections, boolean readClusterConnections)
          Loads application configuration properties from given COM AB CfgApplication object including configuration of connected CfgApplication's and CfgHost's.
 


Platform SDK Java 8.5 API Reference

Send comments on this topicTechpubs.webadmin@genesys.com.
Document version: 8.5.302.00
Copyright © 2006–2017 Genesys Telecommunications Laboratories, Inc. All rights reserved.