Package | Description |
---|---|
com.genesyslab.platform.applicationblocks.com | |
com.genesyslab.platform.applicationblocks.com.cache | |
com.genesyslab.platform.applicationblocks.com.queries |
Modifier and Type | Interface | Description |
---|---|---|
interface |
ICfgFilterBasedQuery<TT extends ICfgObject> |
Each filter-based query object should implement this general interface.
|
Modifier and Type | Class | Description |
---|---|---|
class |
CfgFilterBasedQuery<TT extends ICfgObject> |
A general class that can hold arbitrary values of filter keys and values.
It contains a collection of filter key-value pairs. |
class |
CfgQuery<TT extends ICfgObject> |
The base class for all types of Configuration Server queries.
|
class |
CfgXPathBasedQuery<TT extends ICfgObject> |
This class represents a very special query type for configuration server objects read request.
|
Modifier and Type | Method | Description |
---|---|---|
<T extends ICfgObject> |
ConfService.beginRetrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query,
Action<AsyncRequestResult<T>> finishCallback) |
Starts reading of configuration objects collection from server.
|
<T extends ICfgObject> |
ConfService.beginRetrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query,
Action<java.util.Collection<T>> dataCallback,
Action<AsyncRequestResult<T>> finishCallback) |
Starts reading of configuration objects collection from server.
|
<T extends ICfgObject> |
ConfService.beginRetrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query,
Action<java.util.Collection<T>> dataCallback,
Action<AsyncRequestResult<T>> finishCallback,
long timeout) |
Starts reading of configuration objects collection from server.
|
<T extends ICfgObject> |
IConfService.beginRetrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query,
Action<AsyncRequestResult<T>> finishCallback) |
Begins to asynchronously retrieve a list of objects based on the specified query.
|
<T extends ICfgObject> |
IConfService.beginRetrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query,
Action<java.util.Collection<T>> dataCallback,
Action<AsyncRequestResult<T>> finishCallback) |
Begins to asynchronously retrieve a list of objects based on the specified query.
|
<T extends ICfgObject> |
IConfService.beginRetrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query,
Action<java.util.Collection<T>> dataCallback,
Action<AsyncRequestResult<T>> finishCallback,
long timeout) |
Starts reading of configuration objects collection from server.
|
boolean |
CachingConfServicePolicy.getQueryCacheOnRetrieve(ICfgQuery query) |
Determines whether the cache should be queried before a retrieve operation
is performed.
|
boolean |
IConfServicePolicy.getQueryCacheOnRetrieve(ICfgQuery query) |
Determines whether the cache should be queried before a retrieve operation
is performed.
|
boolean |
CachingConfServicePolicy.getQueryCacheOnRetrieveMultiple(ICfgQuery query) |
Determines whether the cache should be queried before a retrieve multiple
operation is performed.
|
boolean |
IConfServicePolicy.getQueryCacheOnRetrieveMultiple(ICfgQuery query) |
Determines whether the cache should be queried before a retrieve multiple
operation is performed.
|
protected Message |
ConfService.prepareRequestReadBriefInfoMessage(ICfgQuery query) |
|
protected Message |
ConfService.prepareRequestReadObjectsMessage(ICfgQuery query) |
Create Configuration Protocol Request Message
for configuration objects reading.
|
<T extends ICfgObject> |
ConfService.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query) |
Reads collection of configuration objects from server.
|
<T extends ICfgObject> |
ConfService.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query,
long timeout) |
Retrieves a list of typed objects based on the specified query.
|
<T extends ICfgObject> |
IConfService.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query) |
Retrieves a list of typed objects based on the specified query.
|
<T extends ICfgObject> |
IConfService.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query,
long timeout) |
Retrieves a list of typed objects based on the specified query.
|
<T extends ICfgObject> |
ConfService.retrieveObject(ICfgQuery<T> query) |
Retrieves an object based on the specified query.
|
<T extends ICfgObject> |
ConfService.retrieveObject(java.lang.Class<T> cls,
ICfgQuery query) |
Reads configuration object from server.
|
protected <T extends ICfgObject> |
ConfService.retrieveObject(T confObj,
ICfgQuery query) |
Deprecated.
|
protected <T extends ICfgObject> |
ConfService.retrieveObject(T confObj,
ICfgQuery query,
boolean isBriefInfo) |
Reads or refreshes configuration object from server.
|
<T extends ICfgObject> |
IConfService.retrieveObject(ICfgQuery<T> query) |
Retrieves an object based on the specified query.
|
<T extends ICfgObject> |
IConfService.retrieveObject(java.lang.Class<T> cls,
ICfgQuery query) |
Retrieves a typed object based on the specified query.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
CompositeConfCacheQueryEngine.canExecute(ICfgQuery query) |
Looks for a query engine in its list which is capable of executing
the specified query.
|
boolean |
DefaultConfCacheQueryEngine.canExecute(ICfgQuery query) |
Determines whether the query engine can execute the specified query.
|
boolean |
IConfCacheQueryEngine.canExecute(ICfgQuery query) |
Determines whether the query engine can execute the specified query.
|
<T extends ICfgObject> |
DefaultConfCache.retrieve(java.lang.Class<T> cls,
ICfgQuery query) |
Retrieves a configuration object from the cache using the cache's
query engine.
|
<T extends ICfgObject> |
IConfCache.retrieve(java.lang.Class<T> cls,
ICfgQuery query) |
Retrieves a configuration object from the cache.
|
<T extends ICfgObject> |
DefaultConfCache.retrieveMultiple(java.lang.Class<T> cls,
ICfgQuery query) |
Retrieves an enumerable list of objects from the cache using the cache's query engine.
|
<T extends ICfgObject> |
IConfCache.retrieveMultiple(java.lang.Class<T> cls,
ICfgQuery query) |
Retrieves an enumerable list of objects from the cache.
|
<T extends ICfgObject> |
CompositeConfCacheQueryEngine.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query) |
Looks for a query engine which is capable of executing the
specified query, and if found, uses it to retrieve a
list of objects based on that query.
|
<T extends ICfgObject> |
DefaultConfCacheQueryEngine.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query) |
This method is from IConfCacheQueryEngine interface.
|
<T extends ICfgObject> |
IConfCacheQueryEngine.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query) |
Retrieves a collection of objects based on the specified query.
|
<T extends ICfgObject> |
CompositeConfCacheQueryEngine.retrieveObject(java.lang.Class<T> cls,
ICfgQuery query) |
Looks for a query engine which is capable of executing the
specified query, and if found, uses it to retrieve an
object based on that query.
|
<T extends ICfgObject> |
DefaultConfCacheQueryEngine.retrieveObject(java.lang.Class<T> cls,
ICfgQuery query) |
Retrieves an object based on the specified query.
|
<T extends ICfgObject> |
IConfCacheQueryEngine.retrieveObject(java.lang.Class<T> cls,
ICfgQuery query) |
Retrieves an object based on the specified query.
|
Modifier and Type | Class | Description |
---|---|---|
class |
CfgAccessGroupQuery |
Class designed to construct queries to the Configuration Service for reading CfgAccessGroup object(s).
|
class |
CfgActionCodeQuery |
Class designed to construct queries to the Configuration Service for reading CfgActionCode object(s).
|
class |
CfgAgentGroupQuery |
Class designed to construct queries to the Configuration Service for reading CfgAgentGroup object(s).
|
class |
CfgAgentLoginQuery |
Class designed to construct queries to the Configuration Service for reading CfgAgentLogin object(s).
|
class |
CfgAlarmConditionQuery |
Class designed to construct queries to the Configuration Service for reading CfgAlarmCondition object(s).
|
class |
CfgApplicationQuery |
Class designed to construct queries to the Configuration Service for reading CfgApplication object(s).
|
class |
CfgAppPrototypeQuery |
Class designed to construct queries to the Configuration Service for reading CfgAppPrototype object(s).
|
class |
CfgCallingListQuery |
Class designed to construct queries to the Configuration Service for reading CfgCallingList object(s).
|
class |
CfgCampaignGroupQuery |
Class designed to construct queries to the Configuration Service for reading CfgCampaignGroup object(s).
|
class |
CfgCampaignQuery |
Class designed to construct queries to the Configuration Service for reading CfgCampaign object(s).
|
class |
CfgDNGroupQuery |
Class designed to construct queries to the Configuration Service for reading CfgDNGroup object(s).
|
class |
CfgDNQuery |
Class designed to construct queries to the Configuration Service for reading CfgDN object(s).
|
class |
CfgEnumeratorQuery |
Class designed to construct queries to the Configuration Service for reading CfgEnumerator object(s).
|
class |
CfgEnumeratorValueQuery |
Class designed to construct queries to the Configuration Service for reading CfgEnumeratorValue object(s).
|
class |
CfgFieldQuery |
Class designed to construct queries to the Configuration Service for reading CfgField object(s).
|
class |
CfgFilterQuery |
Class designed to construct queries to the Configuration Service for reading CfgFilter object(s).
|
class |
CfgFolderQuery |
Class designed to construct queries to the Configuration Service for reading CfgFolder object(s).
|
class |
CfgFormatQuery |
Class designed to construct queries to the Configuration Service for reading CfgFormat object(s).
|
class |
CfgGVPIVRProfileQuery |
Class designed to construct queries to the Configuration Service for reading CfgGVPIVRProfile object(s).
|
class |
CfgHostQuery |
Class designed to construct queries to the Configuration Service for reading CfgHost object(s).
|
class |
CfgIVRPortQuery |
Class designed to construct queries to the Configuration Service for reading CfgIVRPort object(s).
|
class |
CfgIVRQuery |
Class designed to construct queries to the Configuration Service for reading CfgIVR object(s).
|
class |
CfgObjectiveTableQuery |
Class designed to construct queries to the Configuration Service for reading CfgObjectiveTable object(s).
|
class |
CfgPersonQuery |
Class designed to construct queries to the Configuration Service for reading CfgPerson object(s).
|
class |
CfgPhysicalSwitchQuery |
Class designed to construct queries to the Configuration Service for reading CfgPhysicalSwitch object(s).
|
class |
CfgPlaceGroupQuery |
Class designed to construct queries to the Configuration Service for reading CfgPlaceGroup object(s).
|
class |
CfgPlaceQuery |
Class designed to construct queries to the Configuration Service for reading CfgPlace object(s).
|
class |
CfgRoleQuery |
Class designed to construct queries to the Configuration Service for reading CfgRole object(s).
|
class |
CfgScheduledTaskQuery |
Class designed to construct queries to the Configuration Service for reading CfgScheduledTask object(s).
|
class |
CfgScriptQuery |
Class designed to construct queries to the Configuration Service for reading CfgScript object(s).
|
class |
CfgServiceQuery |
Class designed to construct queries to the Configuration Service for reading CfgService object(s).
|
class |
CfgSkillQuery |
Class designed to construct queries to the Configuration Service for reading CfgSkill object(s).
|
class |
CfgStatDayQuery |
Class designed to construct queries to the Configuration Service for reading CfgStatDay object(s).
|
class |
CfgStatTableQuery |
Class designed to construct queries to the Configuration Service for reading CfgStatTable object(s).
|
class |
CfgSwitchQuery |
Class designed to construct queries to the Configuration Service for reading CfgSwitch object(s).
|
class |
CfgTableAccessQuery |
Class designed to construct queries to the Configuration Service for reading CfgTableAccess object(s).
|
class |
CfgTenantQuery |
Class designed to construct queries to the Configuration Service for reading CfgTenant object(s).
|
class |
CfgTimeZoneQuery |
Class designed to construct queries to the Configuration Service for reading CfgTimeZone object(s).
|
class |
CfgTransactionQuery |
Class designed to construct queries to the Configuration Service for reading CfgTransaction object(s).
|
class |
CfgTreatmentQuery |
Class designed to construct queries to the Configuration Service for reading CfgTreatment object(s).
|
class |
CfgVoicePromptQuery |
Class designed to construct queries to the Configuration Service for reading CfgVoicePrompt object(s).
|
Send comments on this topicTechpubs.webadmin@genesys.com.
Document version: 9.0.006.00
Copyright © 2006–2019 Genesys Telecommunications Laboratories, Inc. All rights reserved.