|
Platform SDK Java 8.5 API Reference | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ICfgQuery | |
---|---|
com.genesyslab.platform.applicationblocks.com | |
com.genesyslab.platform.applicationblocks.com.cache | |
com.genesyslab.platform.applicationblocks.com.queries |
Uses of ICfgQuery in com.genesyslab.platform.applicationblocks.com |
---|
Subinterfaces of ICfgQuery in com.genesyslab.platform.applicationblocks.com | |
---|---|
interface |
ICfgFilterBasedQuery<TT extends ICfgObject>
Each filter-based query object should implement this general interface. |
Classes in com.genesyslab.platform.applicationblocks.com that implement ICfgQuery | |
---|---|
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. |
Methods in com.genesyslab.platform.applicationblocks.com with parameters of type ICfgQuery | ||
---|---|---|
|
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. |
|
|
ConfService.beginRetrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query,
Action<AsyncRequestResult<T>> finishCallback)
Starts reading of configuration objects collection from server. |
|
|
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. |
|
|
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. |
|
|
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. |
|
|
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. |
|
boolean |
IConfServicePolicy.getQueryCacheOnRetrieve(ICfgQuery query)
Determines whether the cache should be queried before a retrieve operation is performed. |
|
boolean |
CachingConfServicePolicy.getQueryCacheOnRetrieve(ICfgQuery query)
Determines whether the cache should be queried before a retrieve operation is performed. |
|
boolean |
IConfServicePolicy.getQueryCacheOnRetrieveMultiple(ICfgQuery query)
Determines whether the cache should be queried before a retrieve multiple operation is performed. |
|
boolean |
CachingConfServicePolicy.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. |
|
|
IConfService.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query)
Retrieves a list of typed objects based on the specified query. |
|
|
ConfService.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query)
Reads collection of configuration objects from server. |
|
|
IConfService.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query,
long timeout)
Retrieves a list of typed objects based on the specified query. |
|
|
ConfService.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query,
long timeout)
Retrieves a list of typed objects based on the specified query. |
|
|
IConfService.retrieveObject(java.lang.Class<T> cls,
ICfgQuery query)
Retrieves a typed object based on the specified query. |
|
|
ConfService.retrieveObject(java.lang.Class<T> cls,
ICfgQuery query)
Reads configuration object from server. |
|
|
IConfService.retrieveObject(ICfgQuery<T> query)
Retrieves an object based on the specified query. |
|
|
ConfService.retrieveObject(ICfgQuery<T> query)
Retrieves an object based on the specified query. |
|
protected
|
ConfService.retrieveObject(T confObj,
ICfgQuery query)
Deprecated. |
|
protected
|
ConfService.retrieveObject(T confObj,
ICfgQuery query,
boolean isBriefInfo)
Reads or refreshes configuration object from server. |
Uses of ICfgQuery in com.genesyslab.platform.applicationblocks.com.cache |
---|
Methods in com.genesyslab.platform.applicationblocks.com.cache with parameters of type ICfgQuery | ||
---|---|---|
boolean |
IConfCacheQueryEngine.canExecute(ICfgQuery query)
Determines whether the query engine can execute the specified query. |
|
boolean |
DefaultConfCacheQueryEngine.canExecute(ICfgQuery query)
Determines whether the query engine can execute the specified query. |
|
boolean |
CompositeConfCacheQueryEngine.canExecute(ICfgQuery query)
Looks for a query engine in its list which is capable of executing the specified query. |
|
|
IConfCache.retrieve(java.lang.Class<T> cls,
ICfgQuery query)
Retrieves a configuration object from the cache. |
|
|
DefaultConfCache.retrieve(java.lang.Class<T> cls,
ICfgQuery query)
Retrieves a configuration object from the cache using the cache's query engine. |
|
|
IConfCache.retrieveMultiple(java.lang.Class<T> cls,
ICfgQuery query)
Retrieves an enumerable list of objects from the cache. |
|
|
DefaultConfCache.retrieveMultiple(java.lang.Class<T> cls,
ICfgQuery query)
Retrieves an enumerable list of objects from the cache using the cache's query engine. |
|
|
IConfCacheQueryEngine.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query)
Retrieves a collection of objects based on the specified query. |
|
|
DefaultConfCacheQueryEngine.retrieveMultipleObjects(java.lang.Class<T> cls,
ICfgQuery query)
This method is from IConfCacheQueryEngine interface. |
|
|
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. |
|
|
IConfCacheQueryEngine.retrieveObject(java.lang.Class<T> cls,
ICfgQuery query)
Retrieves an object based on the specified query. |
|
|
DefaultConfCacheQueryEngine.retrieveObject(java.lang.Class<T> cls,
ICfgQuery query)
Retrieves an object based on the specified query. |
|
|
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. |
Uses of ICfgQuery in com.genesyslab.platform.applicationblocks.com.queries |
---|
Classes in com.genesyslab.platform.applicationblocks.com.queries that implement ICfgQuery | |
---|---|
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). |
|
Platform SDK Java 8.5 API Reference | |||||||||
PREV NEXT | FRAMES NO FRAMES |