Uses of Class
overit.geocall.da.CommandContext
Packages that use CommandContext
Package
Description
-
Uses of CommandContext in overit.geocall.basic.bl.auth.da
Methods in overit.geocall.basic.bl.auth.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOApiKey.feedback(CommandContext cc, PoolKit pk, DBStatement dbs) protected CriterionDAOApiKey.getFilterCriterion(CommandContext cc) protected CriterionDAOSecret.getFilterCriterion(CommandContext cc) protected CriterionDAOSecretValue.getFilterCriterion(CommandContext cc) DAOSecretValue.getTable(CommandContext cc) protected voidDAOApiKey.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocall.basic.bl.profile.da
Methods in overit.geocall.basic.bl.profile.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProfiles.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocall.basic.bl.user.da
Methods in overit.geocall.basic.bl.user.da with parameters of type CommandContextModifier and TypeMethodDescriptionintDAOAllUsers.command(CommandContext cc, PoolKit pk) intDAOUsers.command(CommandContext cc, PoolKit pk) protected CriterionDAOAllUsers.getFilterCriterion(CommandContext cc) protected CriterionDAOUsers.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocall.da
Methods in overit.geocall.da that return CommandContextModifier and TypeMethodDescriptionAdds one or more key / value pairs to the filtersAdds one or more key / value pairs to the valuesSets the filter for the contextCommandContext.setMaxRows(int maxRows) Sets the maximum number of rows that can be extracted with the queries of this CommandContextSets a string that can be used by theDAO, in particular by theDAO.getOrder(overit.geocall.da.CommandContext)method, to specify a particular sorting; it can be a control field (lowercase), a list of fields (uppercase), etc.Sets a String starting from the Order object passed as parameter.
It can be used by theDAO, in particular by theDAO.getOrder(overit.geocall.da.CommandContext)method, to specify a particular sorting
How to use this string depends on the specific implementation and instance of DAOCommandContext.setSkipRows(int skipRows) Sets the number of rows that must be skipped for the queries of this CommandContextSets the values for the contextMethods in overit.geocall.da with parameters of type CommandContextModifier and TypeMethodDescriptionintDAO.command(CommandContext cc) Executes the command defined by theCommandContextpassed as parameterintDAO.command(CommandContext cc, PoolKit pk) Executes the command defined by theCommandContextpassed as parameterintDAO0.command(CommandContext cc) Deprecated.Executes the command defined by theCommandContextpassed as parameterintDAO0.command(CommandContext cc, PooledConnection pc) Deprecated.Executes the command defined by theCommandContextpassed as parameterprotected voidDAO.defineParams(CommandContext cc, PoolKit pk) The method performs a cloning of the maps of the filters and of the values and makes a merge, putting before the filter field names the string F: and before the value field names the string V: to avoid possible conflicts; this is necessary because the same field can be used with different semantics, as a filter and as a value, for example for theDAO.UPDATE_FILTERcommandsprotected voidDAO0.defineParams(CommandContext cc, PooledConnection pc) Deprecated.The method performs a cloning of the maps of the filters and of the values and makes a merge, putting before the filter field names the string F: and before the value field names the string V: to avoid possible conflicts; this is necessary because the same field can be used with different semantics, as a filter and as a value, for example for theDAO0.UPDATE_FILTERcommandsprotected voidDAOSV.defineParams(CommandContext cc, PoolKit pk) protected voidDAO.defineSql(CommandContext cc, PoolKit pk) The method creates the SQL command using the language of the criteria, and in particular based on the methodDAO.getFilterCriterion(overit.geocall.da.CommandContext)protected voidDAO0.defineSql(CommandContext cc, PooledConnection pc) Deprecated.The method creates the SQL command using the language of the criteria, and in particular based on the methodDAO0.getFilterCriterion(CommandContext)protected voidDAO.defineStatement(CommandContext cc, PoolKit pk, DBStatement dbs) The method defines theDBStatement, sets the SQL and the parameters for the execution of the commandsprotected voidDAO0.defineStatement(CommandContext cc, PooledConnection pc, DBStatement dbs) Deprecated.The method defines theDBStatement, sets the SQL and the parameters for the execution of the commandsprotected voidDAO.defineValues(CommandContext cc, PoolKit pk) Method to extend to go to prepare the values operating Java side, for example making calculations, avoiding to operate SQL side that is much more difficult, inconvenient, difficult to maintain and not portable.protected voidDAO0.defineValues(CommandContext cc, PooledConnection pc) Deprecated.Method to extend to go to prepare the values operating Java side, for example making calculations, avoiding to operate SQL side that is much more difficult, inconvenient, difficult to maintain and not portable.voidDAO.execute(CommandContext cc) Executes the command; it extracts a newPooledConnectionfrom the poolvoidDAO.execute(CommandContext cc, PoolKit pk) Executes the commandvoidDAO0.execute(CommandContext cc) Deprecated.Executes the command; it extracts a newPooledConnectionfrom the poolvoidDAO0.execute(CommandContext cc, PooledConnection pc) Deprecated.Executes the commandprotected voidDAO.feedback(CommandContext cc, PoolKit pk, DBStatement dbs) Method to be extended to carry out operations exploiting the result of the executed command; for example it can be used to implement CASE WHEN logics that can therefore be deleted from the SQL.protected voidDAO0.feedback(CommandContext cc, PooledConnection pc, DBStatement dbs) Deprecated.Method to be extended to carry out operations exploiting the result of the executed command; for example it can be used to implement CASE WHEN logics that can therefore be deleted from the SQL.voidFeedbackService.feedback(@NotNull CommandContext cc, @NotNull PoolKit pk, @NotNull DBStatement dbs) Updates the providedCommandContextwith the query results.DAO.getCode(CommandContext cc) Returns aStringabout the name of the field of the table containing acodecapable of uniquely identifying each record (useful during the export of the system configuration).DAOAnnotatedValueExtractor.getCode(@NotNull DAO dao, CommandContext commandContext) protected CriterionDAO.getFilterCriterion(CommandContext cc) Method to extend to go to introduce the inferential rules with which to deduce the SQL automatically based on the context passed as a parameter.protected CriterionDAO0.getFilterCriterion(CommandContext cc) Deprecated.Method to extend to go to introduce the inferential rules with which to deduce the SQL automatically based on the context passed as a parameter.protected CriterionDAOSV.getFilterCriterion(CommandContext cc) String[]DAO.getGroup(CommandContext cc) Returns the array that contains the names of the columns on which we want to group the reults of the queries.String[]DAO0.getGroup(CommandContext cc) Deprecated.Returns the array that contains the names of the columns on which we want to group the reults of the queries.String[]DAOAnnotatedValueExtractor.getGroup(@NotNull DAO dao, CommandContext commandContext) String[]DAO.getOrder(CommandContext cc) Returns the array that contains the names of the columns on which we want to make the sorting of the results of the queries.String[]DAO0.getOrder(CommandContext cc) Deprecated.Returns the array that contains the names of the columns on which we want to make the sorting of the results of the queries.String[]DAO.getStar(CommandContext cc) Returns the array that contains the field list for all the select queries.String[]DAO0.getStar(CommandContext cc) Deprecated.Returns the array that contains the field list for all the select queries.String[]DAOAnnotatedValueExtractor.getStar(@NotNull DAO dao, CommandContext commandContext) Returns the array that contains the field list for all the select queries generated by the providedDAOinstance.DAO.getTable(CommandContext cc) Returns the name of the table on which the specific DAO actsDAO0.getTable(CommandContext cc) Deprecated.Returns the name of the table on which the specific DAO actsDAOAnnotatedValueExtractor.getTable(@NotNull DAO dao, CommandContext commandContext) protected CriterionDAO.getValuesCriterion(CommandContext cc) Method that defines theCriterionused for the different commandsprotected CriterionDAO0.getValuesCriterion(CommandContext cc) Deprecated.Method that defines theCriterionused for the different commandsbooleanDAO.isDistinct(CommandContext cc) Returns the boolean value that determines whether the queries use the DISTINCT clause or notbooleanDAO0.isDistinct(CommandContext cc) Deprecated.Returns the boolean value that determines whether the queries use the DISTINCT clause or notbooleanDAOAnnotatedValueExtractor.isDistinct(@NotNull DAO dao, CommandContext commandContext) Returns the boolean value, extracted from the providedDAOinstance, that determines whether the queries use theDISTINCTclause or not.DAO.query(CommandContext cc) Executes the query defined by theCommandContextpassed as parameterDAO.query(CommandContext cc, PoolKit pk) Executes the query defined by theCommandContextpassed as parameterDAO0.query(CommandContext cc) Deprecated.Executes the query defined by theCommandContextpassed as parameterDAO0.query(CommandContext cc, PooledConnection pc) Deprecated.Executes the query defined by theCommandContextpassed as parametervoidDAO.scan(CommandContext cc, PoolKit pk, DBScanner scanner) scans the dataset defined by a DAO Select command with aDBScannerprotected voidDAO.validate(CommandContext cc, PoolKit pk) Method to extend if you want to implement some logic of data validation; it can raise a DAException, or better, a DAValidateException.protected voidDAO0.validate(CommandContext cc, PooledConnection pc) Deprecated.Method to extend if you want to implement some logic of data validation; it can raise a DAException, or better, a DAValidateException. -
Uses of CommandContext in overit.geocall.sql.batch
Methods in overit.geocall.sql.batch with parameters of type CommandContextModifier and TypeMethodDescriptionBatchBuilder.add(@NotNull CommandContext commandContext) Adds the providedCommandContextto the batch command list.BatchBuilderImpl.add(@NotNull CommandContext commandContext) -
Uses of CommandContext in overit.geocallapp.logger.bl.detail.data
Methods in overit.geocallapp.logger.bl.detail.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOLogDetailSearch.getStar(CommandContext cc) protected voidDAOLogDetailSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.logger.bl.master.data
Methods in overit.geocallapp.logger.bl.master.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOLogMasterSearch.getFilterCriterion(CommandContext cc) String[]DAOLogMasterSearch.getStar(CommandContext cc) protected voidDAOLogMasterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.utilities.core.data
Methods in overit.geocallapp.utilities.core.data with parameters of type CommandContextModifier and TypeMethodDescriptionstatic StringDAOUtils.buildInClause(String parameter, String field, CommandContext commandContext) Builds a SQL IN clause with custom parameter and field names using values fromCommandContext.static StringDAOUtils.buildInClause(String field, CommandContext commandContext) Builds a SQL IN clause for the specified field using values fromCommandContext.DAOUtils.getBaseSearchFilterCriterion(CommandContext cc) Retrieves the list of default decisions for search DAOs.static CriteriaDAOUtils.getDefaultFilterCriterion(CommandContext cc) Retrieves the default filter criterion for search DAOs.static CriteriaDAOUtils.getDefaultFilterCriterion(CommandContext cc, Decision... decisions) Retrieves the default filter criterion for search DAOs with additional custom decisions.static voidDAOUtils.searchValidation(CommandContext cc) Validates the command type of the currentCommandContext.protected voidReadOnlyDAO.validate(CommandContext cc, PoolKit pk) Validates that only SELECT operations are permitted on this read-onlyDAO. -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.account.contact.data
Methods in overit.geocallapp.wfm.accounts.bl.account.contact.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAccountContactSearch.getFilterCriterion(CommandContext cc) protected voidDAOAccountContactSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.account.contact.type.data
Methods in overit.geocallapp.wfm.accounts.bl.account.contact.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOContactTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOContactTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.account.data
Methods in overit.geocallapp.wfm.accounts.bl.account.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOAccount.defineParams(CommandContext cc, PoolKit poolKit) protected CriterionDAOAccount.getFilterCriterion(CommandContext cc) protected CriterionDAOAccountSearch.getFilterCriterion(CommandContext cc) protected voidDAOAccountSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.account.status.data
Methods in overit.geocallapp.wfm.accounts.bl.account.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAccountStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOAccountStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.account.status.type.data
Methods in overit.geocallapp.wfm.accounts.bl.account.status.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAccountStatusTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOAccountStatusTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.account.type.data
Methods in overit.geocallapp.wfm.accounts.bl.account.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOAccountType.defineParams(CommandContext cc, PoolKit poolKit) protected CriterionDAOAccountType.getFilterCriterion(CommandContext cc) protected CriterionDAOAccountTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOAccountTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.converter.data
Methods in overit.geocallapp.wfm.accounts.bl.converter.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOConverterTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOConverterTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.meter.accessibility.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.accessibility.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeterAccessibilitySearch.getFilterCriterion(CommandContext cc) protected voidDAOMeterAccessibilitySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.meter.brand.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.brand.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeterBrand.getFilterCriterion(CommandContext cc) protected CriterionDAOMeterBrandSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeterBrandSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.meter.converter.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.converter.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMeterConverter.defineParams(CommandContext cc, PoolKit poolKit) DAOMeterConverterSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeterConverterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.meter.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMeter.defineParams(CommandContext cc, PoolKit poolKit) protected CriterionDAOMeter.getFilterCriterion(CommandContext cc) protected CriterionDAOMeterSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.meter.location.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.location.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeterLocationSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeterLocationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.meter.meterclass.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.meterclass.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeterClassSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeterClassSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.meter.reading.metertype.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.reading.metertype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOReadingMeterType.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.accounts.bl.meter.type.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeterTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeterTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.agendaaffinity.data
Methods in overit.geocallapp.wfm.ai.bl.agendaaffinity.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOAgendaAffinityAccountingsExtractor.defineParams(CommandContext cc, PoolKit pk) protected CriteriaDAOAgendaAffinityAccountingsExtractor.getFilterCriterion(CommandContext cc) protected CriterionDAOAgendaAffinityPrediction.getFilterCriterion(CommandContext cc) protected CriterionDAOAgendaAffinityWorkshiftsForPrediction.getFilterCriterion(CommandContext cc) protected CriterionDAOAIAgendaAffinity.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchAgendaAffinityDashboard.getFilterCriterion(CommandContext cc) String[]DAOAgendaAffinityAccountingsExtractor.getOrder(CommandContext cc) String[]DAOAgendaAffinityAccountingsExtractor.getStar(CommandContext cc) String[]DAOAgendaAffinityPrediction.getStar(CommandContext cc) String[]DAOSearchAgendaAffinityDashboard.getStar(CommandContext cc) DAOAgendaAffinityAccountingsExtractor.getTable(CommandContext cc) DAOAgendaAffinityPrediction.getTable(CommandContext cc) DAOSearchAgendaAffinityDashboard.getTable(CommandContext cc) booleanDAOSearchAgendaAffinityDashboard.isDistinct(CommandContext cc) protected voidDAOAgendaAffinityAccountingsExtractor.validate(CommandContext cc, PoolKit pk) protected voidDAOAgendaAffinityPrediction.validate(CommandContext cc, PoolKit pk) protected voidDAOAgendaAffinityWorkshiftsForPrediction.validate(CommandContext cc, PoolKit pk) protected voidDAOSearchAgendaAffinityDashboard.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.automaticmeterreading.data
Methods in overit.geocallapp.wfm.ai.bl.automaticmeterreading.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOAutomaticMeterReadingMonitor.addSelectFields(ArrayList<String> fields, CommandContext cc) protected CriterionDAOAutomaticMeterReadingMonitor.getFilterCriterion(CommandContext cc) protected CriteriaDAOAutomaticMeterReadingPredictions.getFilterCriterion(CommandContext cc) DAOAutomaticMeterReadingSearch.getFilterCriterion(CommandContext cc) String[]DAOAutomaticMeterReadingMonitor.getGroup(CommandContext cc) String[]DAOAutomaticMeterReadingSearch.getGroup(CommandContext cc) String[]DAODashboardAMRPrediction.getGroup(CommandContext cc) protected StringDAOAutomaticMeterReadingMonitor.getOnlyErrorFilterCluase(CommandContext cc) String[]DAOAutomaticMeterReadingMonitor.getStar(CommandContext cc) String[]DAOAutomaticMeterReadingSearch.getStar(CommandContext cc) String[]DAODashboardAMRPrediction.getStar(CommandContext cc) DAOAutomaticMeterReadingMonitor.getTable(CommandContext cc) DAOAutomaticMeterReadingSearch.getTable(CommandContext cc) DAODashboardAMRPrediction.getTable(CommandContext cc) booleanDAOAutomaticMeterReadingMonitor.isDistinct(CommandContext cc) booleanDAOAutomaticMeterReadingSearch.isDistinct(CommandContext cc) protected voidDAOAutomaticMeterReadingSearch.validate(CommandContext cc, PoolKit pk) protected voidDAODashboardAMRPrediction.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.configuration.configurationparams.data
Methods in overit.geocallapp.wfm.ai.bl.configuration.configurationparams.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected StringDAOAIConfigurationParamsSearch.getExistsConfigurationParamsOpCenters(CommandContext cc) protected CriterionDAOAIConfigurationParams.getFilterCriterion(CommandContext cc) protected CriterionDAOAIConfigurationParamsSearch.getFilterCriterion(CommandContext cc) protected voidDAOAIConfigurationParamsSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.configuration.models.data
Methods in overit.geocallapp.wfm.ai.bl.configuration.models.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOModel.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.customersearch.meters.data
Methods in overit.geocallapp.wfm.ai.bl.customersearch.meters.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMeterReadings.addSelectFields(ArrayList<String> fields, CommandContext cc) String[]DAOMeterReadings.getOrder(CommandContext cc) String[]DAOMeterReadings.getStar(CommandContext cc) DAOMeterReadings.getTable(CommandContext cc) booleanDAOMeterReadings.isDistinct(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.duration.prediction
Methods in overit.geocallapp.wfm.ai.bl.duration.prediction with parameters of type CommandContextModifier and TypeMethodDescriptionprotected StringDAOWOTimePredictionView.getAssigneEnterpriseClause(CommandContext cc) protected StringDAOWOTimePredictionView.getContributionResourcesClause(CommandContext cc) protected CriterionDAOWOTimePredictionView.getFilterCriterion(CommandContext cc) protected StringDAOWOTimePredictionView.getResourcesClause(CommandContext cc) protected voidDAOWOTimePredictionView.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.duration.prediction.data
Methods in overit.geocallapp.wfm.ai.bl.duration.prediction.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOAIDataExtraction.defineSql(CommandContext cc, PoolKit pk) protected voidDAOWOTimePrediction.defineSql(CommandContext cc, PoolKit pk) protected voidDAOAIDataExtraction.defineStatement(CommandContext cc, PoolKit pk, DBStatement dbs) protected CriteriaDAOSearchWOOperations.getFilterCriterion(CommandContext cc) DAOWOTimePrediction.getFilterCriterion(CommandContext cc) DAOWOTimePredictionSearch.getTable(CommandContext cc) protected voidDAOAIDataExtraction.validate(CommandContext cc, PoolKit pk) protected voidDAOSearchWOOperations.validate(CommandContext cc, PoolKit pk) protected voidDAOWOResourceTimePredictionSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOWOTimePredictionSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.duration.prediction.support.data
Methods in overit.geocallapp.wfm.ai.bl.duration.prediction.support.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSearchInterventions.getFilterCriterion(CommandContext cc) DAOSearchInterventions.getTable(CommandContext cc) protected voidDAOSearchInterventions.validate(CommandContext cc, PooledConnection conn) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.predictivepartsmanagement.data
Methods in overit.geocallapp.wfm.ai.bl.predictivepartsmanagement.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOPPartsManagementSearch.defineValues(CommandContext cc, PoolKit pk) protected CriteriaDAOPPartsManagement.getFilterCriterion(CommandContext cc) protected CriteriaDAOPPartsManagementOrdersExtractor.getFilterCriterion(CommandContext cc) protected CriteriaDAOPPartsManagementPrediction.getFilterCriterion(CommandContext cc) DAOPPartsManagementSearch.getFilterCriterion(CommandContext cc) String[]DAOPPartsManagementSearch.getGroup(CommandContext cc) String[]DAOPPartsManagementSearch.getOrder(CommandContext cc) String[]DAOPPartsManagementOrdersExtractor.getStar(CommandContext cc) String[]DAOPPartsManagementPrediction.getStar(CommandContext cc) String[]DAOPPartsManagementSearch.getStar(CommandContext cc) String[]DAOSkillsExtractor.getStar(CommandContext cc) DAOPPartsManagementOrdersExtractor.getTable(CommandContext cc) DAOPPartsManagementPrediction.getTable(CommandContext cc) DAOPPartsManagementSearch.getTable(CommandContext cc) DAOSkillsExtractor.getTable(CommandContext cc) booleanDAOPPartsManagementOrdersExtractor.isDistinct(CommandContext cc) booleanDAOPPartsManagementPrediction.isDistinct(CommandContext cc) booleanDAOPPartsManagementSearch.isDistinct(CommandContext cc) protected voidDAOPPartsManagementSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.processing.data
Methods in overit.geocallapp.wfm.ai.bl.processing.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOSearchSAIProcessExecution.getStar(CommandContext cc) booleanDAOSearchSAIProcessExecution.isDistinct(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.processing.history.data
Methods in overit.geocallapp.wfm.ai.bl.processing.history.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSearchElaborationHistory.defineSql(CommandContext cc, PoolKit pk) protected StringDAOModelTrainingHistory.getErrorClause(CommandContext cc) protected CriterionDAOElaborationHistory.getFilterCriterion(CommandContext cc) protected CriterionDAOModelTrainingHistory.getFilterCriterion(CommandContext cc) String[]DAOModelTrainingHistory.getStar(CommandContext cc) protected voidDAOModelTrainingHistory.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.processing.utils.export.event
Methods in overit.geocallapp.wfm.ai.bl.processing.utils.export.event that return CommandContextMethods in overit.geocallapp.wfm.ai.bl.processing.utils.export.event with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.processing.utils.export.task
Fields in overit.geocallapp.wfm.ai.bl.processing.utils.export.task declared as CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.teamexperience.data
Methods in overit.geocallapp.wfm.ai.bl.teamexperience.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSearchTeamExperience.getFilterCriterion(CommandContext cc) protected CriterionDAOTeamExperience.getFilterCriterion(CommandContext cc) String[]DAOSearchTeamExperience.getGroup(CommandContext cc) String[]DAOSearchTeamExperience.getOrder(CommandContext cc) String[]DAOSearchTeamExperience.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.teamsuggestion.data
Methods in overit.geocallapp.wfm.ai.bl.teamsuggestion.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSearchTeamSuggestionOperationsAffinity.addSelectFields(ArrayList<String> fields, CommandContext cc) protected voidDAOPredictionExtractor.defineParams(CommandContext cc, PoolKit pk) protected voidDAOTeamSuggestionAccountingsExtractor.defineParams(CommandContext cc, PoolKit pk) protected CriteriaDAOPredictionExtractor.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchTeamSuggestionOperationsAffinity.getFilterCriterion(CommandContext cc) protected CriteriaDAOTeamSuggestionAccountingsExtractor.getFilterCriterion(CommandContext cc) protected CriterionDAOTeamSuggestionMonitor.getFilterCriterion(CommandContext cc) String[]DAOSearchTeamSuggestionOperationsAffinity.getOrder(CommandContext cc) String[]DAOTeamSuggestionAccountingsExtractor.getOrder(CommandContext cc) protected StringDAOSearchTeamSuggestionOperationsAffinity.getResourcesClause(CommandContext cc) String[]DAOPredictionExtractor.getStar(CommandContext cc) String[]DAOSearchTeamSuggestionOperationsAffinity.getStar(CommandContext cc) String[]DAOTeamSuggestionAccountingsExtractor.getStar(CommandContext cc) String[]DAOTeamSuggestionMonitor.getStar(CommandContext cc) String[]DAOTeamSuggestionResourceExtractor.getStar(CommandContext cc) DAOPredictionExtractor.getTable(CommandContext cc) DAOSearchTeamSuggestionOperationsAffinity.getTable(CommandContext cc) DAOTeamSuggestionAccountingsExtractor.getTable(CommandContext cc) DAOTeamSuggestionMonitor.getTable(CommandContext cc) DAOTeamSuggestionResourceExtractor.getTable(CommandContext cc) protected voidDAOPredictionExtractor.validate(CommandContext cc, PoolKit pk) protected voidDAOTeamSuggestionAccountingsExtractor.validate(CommandContext cc, PoolKit pk) protected voidDAOTeamSuggestionResourceExtractor.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.teamsuggestion.teamaffinity.data
Methods in overit.geocallapp.wfm.ai.bl.teamsuggestion.teamaffinity.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSearchTeamAffinity.defineSql(CommandContext cc, PoolKit pk) protected CriteriaDAOTeamAffinity.getFilterCriterion(CommandContext cc) protected voidDAOSearchTeamAffinity.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.ai.bl.workorder.WOOperation.meterpredictions.data
Methods in overit.geocallapp.wfm.ai.bl.workorder.WOOperation.meterpredictions.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOAutomaticMeterReadingPredictionsSearch.addSelectFields(ArrayList<String> fields, CommandContext cc) Add select fields.String[]DAOAutomaticMeterReadingPredictionsSearch.getOrder(CommandContext cc) Returns the order.String[]DAOAutomaticMeterReadingPredictionsSearch.getStar(CommandContext cc) Returns the star.DAOAutomaticMeterReadingPredictionsSearch.getTable(CommandContext cc) Returns the table.booleanDAOAutomaticMeterReadingPredictionsSearch.isDistinct(CommandContext cc) Checks if is distinct. -
Uses of CommandContext in overit.geocallapp.wfm.ai.replicator.meterreading.data
Methods in overit.geocallapp.wfm.ai.replicator.meterreading.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.ai.ux.duration.prediction.dashboard.data
Methods in overit.geocallapp.wfm.ai.ux.duration.prediction.dashboard.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAODashboardWOTimePrediction.getGroup(CommandContext cc) String[]DAODashboardWOTimePrediction.getStar(CommandContext cc) DAODashboardWOTimePrediction.getTable(CommandContext cc) protected voidDAODashboardWOTimePrediction.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.ai.ux.duration.prediction.monitor.data
Methods in overit.geocallapp.wfm.ai.ux.duration.prediction.monitor.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOPredictionMonitor.defineSql(CommandContext cc, PoolKit pk) protected voidDAOPredictionMonitor.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.ai.ux.predictivepartsmanagement.data
Methods in overit.geocallapp.wfm.ai.ux.predictivepartsmanagement.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOPPMSearchMaterials.defineParams(CommandContext cc, PoolKit pk) protected CriterionDAOPPMSearchMaterials.getFilterCriterion(CommandContext cc) String[]DAOPPMSearchMaterials.getStar(CommandContext cc) DAOPPMSearchMaterials.getTable(CommandContext cc) booleanDAOPPMSearchMaterials.isDistinct(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.assets.bl.characteristicvalue.data
Methods in overit.geocallapp.wfm.assets.bl.characteristicvalue.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOAssetCharacteristicValueHistory.defineValues(CommandContext cc, PoolKit pk) DAOAssetCharacteristicValue.getFilterCriterion(CommandContext cc) DAOAssetCharacteristicValueSearch.getFilterCriterion(CommandContext cc) protected voidDAOAssetCharacteristicValueSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.assets.bl.contact.data
Methods in overit.geocallapp.wfm.assets.bl.contact.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAssetContactSearch.getFilterCriterion(CommandContext cc) protected voidDAOAssetContactSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.assets.bl.contact.type.data
Methods in overit.geocallapp.wfm.assets.bl.contact.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOContactTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOContactTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.assets.bl.data
Methods in overit.geocallapp.wfm.assets.bl.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOAsset.defineParams(CommandContext cc, PoolKit poolKit) protected voidDAOAssetDescendantSearch.defineSql(CommandContext cc, PoolKit pk) protected CriterionDAOAsset.getFilterCriterion(CommandContext cc) protected CriterionDAOAssetSearch.getFilterCriterion(CommandContext cc) protected voidDAOAssetSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.assets.bl.operationcenter.data
Methods in overit.geocallapp.wfm.assets.bl.operationcenter.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOAssetOperationCenterSearch.getFilterCriterion(CommandContext cc) protected voidDAOAssetOperationCenterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.assets.bl.status.data
Methods in overit.geocallapp.wfm.assets.bl.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAssetStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOAssetStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.assets.bl.status.type.data
Methods in overit.geocallapp.wfm.assets.bl.status.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAssetStatusTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOAssetStatusTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.assets.bl.type.admittedstatus.data
Methods in overit.geocallapp.wfm.assets.bl.type.admittedstatus.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAssetTypeAdmittedStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOAssetTypeAdmittedStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.assets.bl.type.data
Methods in overit.geocallapp.wfm.assets.bl.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOAssetType.defineParams(CommandContext cc, PoolKit poolKit) protected CriterionDAOAssetType.getFilterCriterion(CommandContext cc) protected CriterionDAOAssetTypeSearch.getFilterCriterion(CommandContext cc) String[]DAOAssetTypeSearch.getStar(CommandContext cc) protected voidDAOAssetTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.assets.bl.type.operationcenter.data
Methods in overit.geocallapp.wfm.assets.bl.type.operationcenter.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOAssetTypeOperationCenterSearch.getFilterCriterion(CommandContext cc) protected voidDAOAssetTypeOperationCenterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.assets.bl.type.template.characteristic.data
Methods in overit.geocallapp.wfm.assets.bl.type.template.characteristic.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAssetTypeTemplateCharacteristicSearch.getFilterCriterion(CommandContext cc) DAOAssetTypeTemplateCharacteristicSearch.getTable(CommandContext cc) protected voidDAOAssetTypeTemplateCharacteristicSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.assets.bl.type.template.data
Methods in overit.geocallapp.wfm.assets.bl.type.template.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAssetTypeTemplateSearch.getFilterCriterion(CommandContext cc) protected voidDAOAssetTypeTemplateSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.bundleRequirement.data
Methods in overit.geocallapp.wfm.bundler.bl.bundleRequirement.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOBundleRequirementSearch.getFilterCriterion(CommandContext cc) protected voidDAOBundleRequirementSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.bundleRequirement.migration.data
Methods in overit.geocallapp.wfm.bundler.bl.bundleRequirement.migration.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOBundleExtractRequirements.defineParams(CommandContext cc, PoolKit poolKit) protected CriterionDAOBundleExtractRequirements.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.configuration.bundling.ordering.data
Methods in overit.geocallapp.wfm.bundler.bl.configuration.bundling.ordering.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOBundleOperationOrdering.getFilterCriterion(CommandContext cc) String[]DAOBundleOperationOrdering.getStar(CommandContext cc) protected voidDAOBundleOperationOrdering.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.configuration.bundling.rule.filter.data
Methods in overit.geocallapp.wfm.bundler.bl.configuration.bundling.rule.filter.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.configuration.bundling.rule.header.data
Methods in overit.geocallapp.wfm.bundler.bl.configuration.bundling.rule.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOBundlingRuleHeaderSearch.getFilterCriterion(CommandContext cc) String[]DAOBundlingRuleHeaderSearch.getStar(CommandContext cc) protected voidDAOBundlingRuleHeaderSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.configuration.bundling.rule.ordering.data
Methods in overit.geocallapp.wfm.bundler.bl.configuration.bundling.rule.ordering.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOBundlingRuleOrderingSearch.getFilterCriterion(CommandContext cc) String[]DAOBundlingRuleOrderingSearch.getStar(CommandContext cc) protected voidDAOBundlingRuleOrderingSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.criterion.data
Methods in overit.geocallapp.wfm.bundler.bl.criterion.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.header.data
Methods in overit.geocallapp.wfm.bundler.bl.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOBundleHeader.getFilterCriterion(CommandContext cc) DAOBundleHeaderSearch.getFilterCriterion(CommandContext cc) String[]DAOBundleHeaderSearch.getStar(CommandContext cc) DAOBundleHeaderSearch.getWorkOrderClause(CommandContext cc) Returns the clause to filter the bundle headers by work order and work order operation. -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.header.status.data
Methods in overit.geocallapp.wfm.bundler.bl.header.status.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.operation.data
Methods in overit.geocallapp.wfm.bundler.bl.operation.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOBundleOperationSearch.getFilterCriterion(CommandContext cc) String[]DAOBundleOperationSearch.getStar(CommandContext cc) protected voidDAOBundleOperationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.operation.status.data
Methods in overit.geocallapp.wfm.bundler.bl.operation.status.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.skill.data
Methods in overit.geocallapp.wfm.bundler.bl.skill.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.bundler.bl.skilldivision.data
Methods in overit.geocallapp.wfm.bundler.bl.skilldivision.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.calendars.bl.availability.type.data
Methods in overit.geocallapp.wfm.calendars.bl.availability.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAvailabilityTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOAvailabilityTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.calendars.bl.workshift.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWorkShift.defineParams(CommandContext cc, PoolKit poolKit) protected voidDAOWorkShiftSearch.defineParams(CommandContext cc, PoolKit poolKit) protected StringDAOWorkShiftSearch.getDummyClause(CommandContext cc) protected CriterionDAOWorkShift.getFilterCriterion(CommandContext cc) DAOWorkShiftSearch.getFilterCriterion(CommandContext cc) protected StringDAOWorkShiftSearch.getResourceWorkshiftClause(CommandContext cc) DAOWorkShiftSearch.getTable(CommandContext cc) protected StringDAOWorkShiftSearch.getWorkShiftClause(CommandContext cc) protected voidDAOWorkShiftSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.calendars.bl.workshift.exception.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.exception.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkShiftExceptionSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkShiftExceptionSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.calendars.bl.workshift.exception.exceptionclass.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.exception.exceptionclass.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkShiftExceptionClassSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkShiftExceptionClassSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.calendars.bl.workshift.exception.exceptionclass.type.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.exception.exceptionclass.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkShiftExceptionClassTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkShiftExceptionClassTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.calendars.bl.workshift.exception.impact.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.exception.impact.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkShiftExceptionImpactSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkShiftExceptionImpactSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.calendars.bl.workshift.exception.management.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.exception.management.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkShiftExceptionManagementSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkShiftExceptionManagementSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.calendars.bl.workshift.exception.type.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.exception.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkShiftExceptionTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkShiftExceptionTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.calendars.bl.workshift.type.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWorkShiftType.defineParams(CommandContext cc, PoolKit poolKit) DAOWorkShiftTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkShiftTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.calendars.bl.workshift.type.typeclass.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.type.typeclass.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkShiftTypeClassSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkShiftTypeClassSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.calendars.bl.workshift.workshiftexceptionworkshift.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.workshiftexceptionworkshift.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkShiftExceptionWorkShiftSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkShiftExceptionWorkShiftSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.catalogs.bl.catalogcode.data
Methods in overit.geocallapp.wfm.catalogs.bl.catalogcode.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOCatalogCodeSearch.getFilterCriterion(CommandContext cc) protected voidDAOCatalogCodeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.catalogs.bl.cataloggroup.data
Methods in overit.geocallapp.wfm.catalogs.bl.cataloggroup.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOCatalogGroupSearch.getFilterCriterion(CommandContext cc) protected voidDAOCatalogGroupSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.catalogs.bl.cataloggroup.type.data
Methods in overit.geocallapp.wfm.catalogs.bl.cataloggroup.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCatalogGroupTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOCatalogGroupTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.catalogs.bl.cataloggroup.type.entitytype.data
Methods in overit.geocallapp.wfm.catalogs.bl.cataloggroup.type.entitytype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOCatalogGroupEntityTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.cee.bl.da
Methods in overit.geocallapp.wfm.cee.bl.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOPlannedIntervention.getFilterCriterion(CommandContext cc) String[]DAOInterventionInfo.getStar(CommandContext cc) DAOAppointments.getTable(CommandContext cc) protected voidDAOInterventionInfo.validate(CommandContext cc, PoolKit pk) protected voidDAOPlannedIntervention.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.cee.bl.survey.da
Methods in overit.geocallapp.wfm.cee.bl.survey.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected StringDAOSurveySearch.getAssigneeClause(CommandContext cc) DAOSurveySearch.getFilterCriterion(CommandContext cc) String[]DAOSurveySearch.getStar(CommandContext cc) DAOSurveySearch.getTable(CommandContext cc) protected voidDAOSurveySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.cee.bl.vcappointment.da
Methods in overit.geocallapp.wfm.cee.bl.vcappointment.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSearchVCAppointment.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.characteristics.bl.characteristicclass.data
Methods in overit.geocallapp.wfm.characteristics.bl.characteristicclass.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOCharacteristicClassSearch.getFilterCriterion(CommandContext cc) protected voidDAOCharacteristicClassSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.characteristics.bl.characteristicclass.type.data
Methods in overit.geocallapp.wfm.characteristics.bl.characteristicclass.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOCharacteristicClassTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOCharacteristicClassTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.characteristics.bl.data
Methods in overit.geocallapp.wfm.characteristics.bl.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOCharacteristicSearch.getFilterCriterion(CommandContext cc) protected voidDAOCharacteristicSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.characteristics.bl.usage.data
Methods in overit.geocallapp.wfm.characteristics.bl.usage.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOCharacteristicUsageSearch.getFilterCriterion(CommandContext cc) protected voidDAOCharacteristicUsageSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.characteristics.bl.valuedomain.data
Methods in overit.geocallapp.wfm.characteristics.bl.valuedomain.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOValueDomainSearch.getFilterCriterion(CommandContext cc) protected voidDAOValueDomainSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.characteristics.bl.valuedomain.item.data
Methods in overit.geocallapp.wfm.characteristics.bl.valuedomain.item.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOValueDomainItemSearch.getFilterCriterion(CommandContext cc) protected voidDAOValueDomainItemSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.base.datatype.data
Methods in overit.geocallapp.wfm.core.bl.base.datatype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAODataType.getFilterCriterion(CommandContext cc) protected voidDAODataType.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.base.externalsystem.data
Methods in overit.geocallapp.wfm.core.bl.base.externalsystem.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOExternalSystemSearch.getFilterCriterion(CommandContext cc) protected voidDAOExternalSystemSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.base.measureunit.data
Methods in overit.geocallapp.wfm.core.bl.base.measureunit.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeasurementUnitSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeasurementUnitSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.base.operationcenter.address.data
Methods in overit.geocallapp.wfm.core.bl.base.operationcenter.address.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOOperationCenterAddressSearch.getFilterCriterion(CommandContext cc) protected voidDAOOperationCenterAddressSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.base.operationcenter.data
Methods in overit.geocallapp.wfm.core.bl.base.operationcenter.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.base.operationcenter.workcentertype.data
Methods in overit.geocallapp.wfm.core.bl.base.operationcenter.workcentertype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSearchOperationCenterWorkCenter.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.base.structure.data
Methods in overit.geocallapp.wfm.core.bl.base.structure.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSearchStructure.getFilterCriterion(CommandContext cc) protected voidDAOSearchStructure.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.base.structurevalidityperiod.da
Methods in overit.geocallapp.wfm.core.bl.base.structurevalidityperiod.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSearchStructureValidityPeriod.defineParams(CommandContext cc, PoolKit pk) String[]DAOSearchStructureValidityPeriod.getOrder(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.base.teamcardinality.data
Methods in overit.geocallapp.wfm.core.bl.base.teamcardinality.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTeamCardinality.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.base.workcenter.data
Methods in overit.geocallapp.wfm.core.bl.base.workcenter.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkCenter.getFilterCriterion(CommandContext cc) protected CriterionDAOWorkCenterSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkCenterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.base.zone.data
Methods in overit.geocallapp.wfm.core.bl.base.zone.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSearchZone.getFilterCriterion(CommandContext cc) DAOSearchZone.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.bundler.bundling.data
Methods in overit.geocallapp.wfm.core.bl.bundler.bundling.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOBundleWorkOrderOperationSearch.defineValues(CommandContext cc, PoolKit pk) DAOBundleWorkOrderOperationSearch.getFilterCriterion(CommandContext cc) protected StringDAOBundleWorkOrderOperationSearch.getWorkOrderFiltersClause(CommandContext cc) protected voidDAOBundleWorkOrderOperationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.bundler.data
Methods in overit.geocallapp.wfm.core.bl.bundler.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected StringDAOBundleSearch.getBundlingByOperationTypeClause(CommandContext cc) protected StringDAOBundleSearch.getBundlingByRequestTypeClause(CommandContext cc) protected StringDAOBundleSearch.getBundlingByServiceTypeClause(CommandContext cc) protected StringDAOBundleSearch.getBundlingByTeamCardinalityClause(CommandContext cc) protected StringDAOBundleSearch.getBundlingByTechnicalObjectTypeClause(CommandContext cc) DAOBundleSearch.getFilterCriterion(CommandContext cc) protected StringDAOBundleSearch.getSchedulingPlanClause(CommandContext cc) String[]DAOBundleSearch.getStar(CommandContext cc) DAOBundleSearch.getWorkOrderClause(CommandContext cc) protected voidDAOBundleSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.crewshell.address.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.address.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.crewshell.composition.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.composition.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOCrewShellMemberSearch.getStar(CommandContext cc) DAOCrewShellMemberSearch.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.crewshell.composition.draft.allocate.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.composition.draft.allocate.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAllocateTechnicianSearch.getFilterCriterion(CommandContext cc) protected StringDAOAllocateTechnicianSearch.getSkillsClause(CommandContext cc) String[]DAOAllocateTechnicianSearch.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.crewshell.composition.draft.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.composition.draft.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCrewShellDraftCompositionSearch.getFilterCriterion(CommandContext cc) String[]DAOCrewShellDraftCompositionSearch.getStar(CommandContext cc) protected voidDAOCrewShellDraftCompositionSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.crewshell.composition.mismatch.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.composition.mismatch.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCrewShellCompositionMismatchSearch.getFilterCriterion(CommandContext cc) protected voidDAOCrewShellCompositionMismatchSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.crewshell.dailyplan.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.dailyplan.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOCrewShellDailyPlanSearch.defineParams(CommandContext cc, PoolKit pk) protected StringDAOCrewShellDailyPlanSearch.getCodesClause(CommandContext cc) DAOCrewShellDailyPlanSearch.getFilterCriterion(CommandContext cc) protected StringDAOCrewShellDailyPlanSearch.getSkillsClause(CommandContext cc) String[]DAOCrewShellDailyPlanSearch.getStar(CommandContext cc) DAOCrewShellDailyPlanSearch.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.crewshell.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCrewShellBySchedulingsSearch.getTable(CommandContext cc) protected voidDAOCrewShellBySchedulingsSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.crewshell.scheduling.workday.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.scheduling.workday.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWorkDayClosureCrewShell.defineSql(CommandContext cc, PoolKit pk) protected voidDAOWorkDayClosureCrewShell.defineValues(CommandContext cc, PoolKit pk) protected voidDAOWorkDayClosureCrewShell.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.crewshell.skill.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.skill.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.crewshell.user.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.user.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCrewShellUserSearch.getFilterCriterion(CommandContext cc) protected StringDAOCrewShellUserSearch.getSkillsClause(CommandContext cc) DAOCrewShellUserSearch.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.criticalactivity.data
Methods in overit.geocallapp.wfm.core.bl.criticalactivity.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCriticalActivitySearch.getFilterCriterion(CommandContext cc) protected voidDAOCriticalActivitySearch.validate(CommandContext cc, PoolKit poolKit) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.criticalactivity.detectprocess.data
Methods in overit.geocallapp.wfm.core.bl.criticalactivity.detectprocess.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOCriticalActivityDetectProcessUpdate.defineValues(CommandContext cc, PoolKit poolKit) protected voidDAOCriticalActivityWorkOrderOperationSearch.defineValues(CommandContext cc, PoolKit poolKit) DAOCriticalActivityDetectProcessSearch.getFilterCriterion(CommandContext cc) DAOCriticalActivityDetectProcessUpdate.getFilterCriterion(CommandContext cc) DAOCriticalActivityWorkOrderOperationSearch.getFilterCriterion(CommandContext cc) protected StringDAOCriticalActivityDetectProcessSearch.getOverlappingDateClause(CommandContext cc) protected StringDAOCriticalActivityWorkOrderOperationSearch.getWorkOrderFiltersClause(CommandContext cc) protected voidDAOCriticalActivityDetectProcessSearch.validate(CommandContext cc, PoolKit poolKit) protected voidDAOCriticalActivityDetectProcessUpdate.validate(CommandContext cc, PoolKit poolKit) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.criticalactivity.rule.criterion.data
Methods in overit.geocallapp.wfm.core.bl.criticalactivity.rule.criterion.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCriticalActivityRuleCriterionSearch.getFilterCriterion(CommandContext cc) Returns the filter criterion. -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.criticalactivity.rule.header.data
Methods in overit.geocallapp.wfm.core.bl.criticalactivity.rule.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCriticalActivityRuleHeaderSearch.getFilterCriterion(CommandContext cc) Returns the filter criterion.DAOCriticalActivityRuleHeaderSearch.getOperationCenterClause(CommandContext cc) protected voidDAOCriticalActivityRuleHeaderSearch.validate(CommandContext cc, PoolKit poolKit) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.criticalactivity.rule.wofilter.data
Methods in overit.geocallapp.wfm.core.bl.criticalactivity.rule.wofilter.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOCriticalActivityRuleWOFilterSearch.validate(CommandContext cc, PoolKit poolKit) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.datacollection.converter.sheet.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.converter.sheet.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAODataCollectionSheetConversionSearch.getFilterCriterion(CommandContext cc) String[]DAODataCollectionSheetConversionSearch.getStar(CommandContext cc) DAODataCollectionSheetConversionSearch.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.datacollection.converter.sheet.retriever.massive.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.converter.sheet.retriever.massive.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAODataCollectionSheetConverterMassiveSearch.defineSql(CommandContext cc, PoolKit pk) The method creates the SQL command using the language of the criteria, and in particular based on the methodDAO.getFilterCriterion(overit.geocall.da.CommandContext)String[]DAODataCollectionSheetConverterMassiveSearch.getStar(CommandContext cc) Returns the array that contains the field list for all the select queries.DAODataCollectionSheetConverterMassiveSearch.getTable(CommandContext cc) Returns the name of the table on which the specific DAO acts -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.datacollection.converter.sheet.retriever.subset.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.converter.sheet.retriever.subset.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAODataCollectionSheetConversionSubsetSearch.defineSql(CommandContext cc, PoolKit pk) The method creates the SQL command using the language of the criteria, and in particular based on the methodDAO.getFilterCriterion(overit.geocall.da.CommandContext)String[]DAODataCollectionSheetConversionSubsetSearch.getStar(CommandContext cc) Returns the array that contains the field list for all the select queries.DAODataCollectionSheetConversionSubsetSearch.getTable(CommandContext cc) Returns the name of the table on which the specific DAO acts -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.datacollection.converter.template.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.converter.template.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAODataCollectionTemplateConversionSearch.defineSql(CommandContext cc, PoolKit pk) The method creates the SQL command using the language of the criteria, and in particular based on the methodDAODataCollectionTemplateConversionSearch.getFilterCriterion(overit.geocall.da.CommandContext)protected CriterionDAODataCollectionTemplateConversionSearch.getFilterCriterion(CommandContext cc) Returns the filter criterion. -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.datacollection.converter.template.retriever.massive.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.converter.template.retriever.massive.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAODataCollectionTemplateConversionMassiveSearch.defineSql(CommandContext cc, PoolKit pk) The method creates the SQL command using the language of the criteria, and in particular based on the methodDAO.getFilterCriterion(overit.geocall.da.CommandContext)String[]DAODataCollectionTemplateConversionMassiveSearch.getStar(CommandContext cc) Returns the array that contains the field list for all the select queries.DAODataCollectionTemplateConversionMassiveSearch.getTable(CommandContext cc) Returns the name of the table on which the specific DAO acts -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.datacollection.converter.template.retriever.subset.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.converter.template.retriever.subset.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAODataCollectionTemplateConversionSubsetSearch.defineSql(CommandContext cc, PoolKit pk) The method creates the SQL command using the language of the criteria, and in particular based on the methodDAO.getFilterCriterion(overit.geocall.da.CommandContext)String[]DAODataCollectionTemplateConversionSubsetSearch.getStar(CommandContext cc) Returns the array that contains the field list for all the select queries.DAODataCollectionTemplateConversionSubsetSearch.getTable(CommandContext cc) Returns the name of the table on which the specific DAO acts -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.datacollection.converter.template.structure.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.converter.template.structure.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAODataCollectionTemplateVersionConversionSearch.defineSql(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.datacollection.rule.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.rule.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAODataCollectionTemplateWOCreationRuleUISearch.getFilterCriterion(CommandContext cc) DAOWorkCycleOperationDataCollection.getFilterCriterion(CommandContext cc) DAODataCollectionTemplateWOCreationRuleUISearch.getTable(CommandContext cc) DAOWorkCycleOperationDataCollection.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.datacollection.sheet.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.sheet.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected booleanDAODataCollectionSheetExtendedSearch.areThereFiltersOnSet(CommandContext cc, Set<String> filtersFields) protected voidDAODataCollectionSheetExtendedSearch.defineSql(CommandContext cc, PoolKit pk) protected StringDAODataCollectionSheetExtendedSearch.getAssociatedSchedulingUserClause(CommandContext cc) protected StringDAODataCollectionSheetExtendedSearch.getAssociatedWOOperationClause(CommandContext cc) protected StringDAODataCollectionSheetExtendedSearch.getFilledInClause(CommandContext cc) DAODataCollectionSheetExtendedSearch.getFilterCriterion(CommandContext cc) protected StringDAODataCollectionSheetExtendedSearch.getNeverFilledInClause(CommandContext cc) protected StringDAODataCollectionSheetExtendedSearch.getPartiallyFilledInClause(CommandContext cc) protected voidDAODataCollectionSheetExtendedSearch.technicalObjectWOFilter(CommandContext cc, Select select) protected voidDAODataCollectionSheetExtendedSearch.templateFilter(CommandContext cc, Select select) protected voidDAODataCollectionSheetExtendedSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.datacollection.template.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.template.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected booleanDAODataCollectionTemplateHeaderSearch.areThereFiltersOnSet(CommandContext cc, Set<String> filtersFields) Deprecated, for removal: This API element is subject to removal in a future version.protected voidDAODataCollectionTemplateHeaderSearch.defineSql(CommandContext cc, PoolKit pk) Deprecated, for removal: This API element is subject to removal in a future version.protected voidDAODataCollectionTemplateHeaderSearch.defineValues(CommandContext cc, PoolKit pk) Deprecated, for removal: This API element is subject to removal in a future version.protected voidDAODataCollectionTemplateStructureReleaseSearch.defineValues(CommandContext cc, PoolKit pk) Deprecated, for removal: This API element is subject to removal in a future version.protected StringDAODataCollectionTemplateStructureReleaseSearch.getCurrentAndFutureValidReleasesClause(CommandContext cc) Deprecated, for removal: This API element is subject to removal in a future version.protected StringDAODataCollectionTemplateStructureReleaseSearch.getCurrentValidReleasesClause(CommandContext cc) Deprecated, for removal: This API element is subject to removal in a future version.DAODataCollectionTemplateHeaderSearch.getFilterCriterion(CommandContext cc) Deprecated, for removal: This API element is subject to removal in a future version.DAODataCollectionTemplateStructureReleaseSearch.getFilterCriterion(CommandContext cc) Deprecated, for removal: This API element is subject to removal in a future version.protected voidDAODataCollectionTemplateHeaderSearch.validate(CommandContext cc, PoolKit pk) Deprecated, for removal: This API element is subject to removal in a future version.protected voidDAODataCollectionTemplateStructureReleaseSearch.validate(CommandContext cc, PoolKit pk) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.features.facilitytype.data
Methods in overit.geocallapp.wfm.core.bl.features.facilitytype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOFeatureFacilityType.getFilterCriterion(CommandContext cc) protected CriterionDAOFeatureFacilityTypeSearch.getFilterCriterion(CommandContext cc) DAOSearchTeachnicalObjectFeatures.getFilterCriterion(CommandContext cc) DAOSearchTeachnicalObjectFeatures.getTable(CommandContext cc) protected voidDAOFeatureFacilityTypeSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOSearchTeachnicalObjectFeatures.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.features.featureclass.data
Methods in overit.geocallapp.wfm.core.bl.features.featureclass.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOFeatureClassSearch.getFilterCriterion(CommandContext cc) protected voidDAOFeatureClassSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.features.featureclasstype.data
Methods in overit.geocallapp.wfm.core.bl.features.featureclasstype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOFeatureClassTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOFeatureClassTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.features.usage.data
Methods in overit.geocallapp.wfm.core.bl.features.usage.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOFeatureUsageSearch.getFilterCriterion(CommandContext cc) protected voidDAOFeatureUsageSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.features.valuedomain.data
Methods in overit.geocallapp.wfm.core.bl.features.valuedomain.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOFeatureValueDomainSearch.getFilterCriterion(CommandContext cc) protected voidDAOFeatureValueDomainSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.loan.data
Methods in overit.geocallapp.wfm.core.bl.loan.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOResourceLoanSearch.getFilterCriterion(CommandContext cc) protected voidDAOResourceLoanSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.location.address.data
Methods in overit.geocallapp.wfm.core.bl.location.address.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAddressSearch.getFilterCriterion(CommandContext cc) protected voidDAOAddressSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.location.address.type.data
Methods in overit.geocallapp.wfm.core.bl.location.address.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAddressTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOAddressTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.location.district.data
Methods in overit.geocallapp.wfm.core.bl.location.district.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAODistrictSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.location.microcluster.aggregate.data
Methods in overit.geocallapp.wfm.core.bl.location.microcluster.aggregate.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMicroclusterAggregate.defineParams(CommandContext cc, PoolKit pk) protected voidDAOSearchMCAggregate.defineSql(CommandContext cc, PoolKit pk) protected SelectDAOSearchMCAggregate.getDetailQuery(CommandContext cc) protected CriterionDAOMicroclusterAggregate.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchMCAggregate.getFilterCriterion(CommandContext cc) DAOSearchMCAggregate.getTable(CommandContext cc) protected CriterionDAOMicroclusterAggregate.getValuesCriterion(CommandContext cc) protected voidDAOSearchMCAggregate.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.location.microcluster.data
Methods in overit.geocallapp.wfm.core.bl.location.microcluster.data with parameters of type CommandContextModifier and TypeMethodDescriptionvoidDAOSearchMicroclusterForSchedulingAreas.defineParams(CommandContext cc, PoolKit pk) protected voidDAOSearchMicroclusterForComposition.defineSql(CommandContext cc, PoolKit pk) protected voidDAOSearchMicroclusterForSchedulingAreas.defineSql(CommandContext cc, PoolKit pk) protected voidDAOSearchMicroclusterBoundingBox.defineStatement(CommandContext cc, PoolKit pk, DBStatement dbs) protected SelectDAOSearchMicroclusterForComposition.getAvailableInnerQuery(CommandContext cc) protected SelectDAOSearchMicroclusterForComposition.getCompleteInnerQuery(CommandContext cc) protected CriterionDAOSearchMicroclusterForComposition.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchMicroclusterForSchedulingAreas.getFilterCriterion(CommandContext cc) String[]DAOSearchMicroclusterForComposition.getGroup(CommandContext cc) protected SelectDAOSearchMicroclusterForComposition.getInnerQuery(CommandContext cc) protected FragmentDAOSearchMicroclusterForSchedulingAreas.getInnerQuery(CommandContext cc) protected SelectDAOSearchMicroclusterForComposition.getOccupiedInnerQuery(CommandContext cc) String[]DAOSearchMicroclusterForComposition.getOrder(CommandContext cc) String[]DAOSearchMicroclusterBoundingBox.getStar(CommandContext cc) String[]DAOSearchMicroclusterForComposition.getStar(CommandContext cc) protected voidDAOSearchMicroclusterBoundingBox.validate(CommandContext cc, PoolKit pk) protected voidDAOSearchMicroclusterForComposition.validate(CommandContext cc, PoolKit pk) protected voidDAOSearchMicroclusterForSchedulingAreas.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.location.microcluster.zone.data
Methods in overit.geocallapp.wfm.core.bl.location.microcluster.zone.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMicroclusterZone.defineParams(CommandContext cc, PoolKit pk) protected CriterionDAOMicroclusterZone.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchMicroclusterZone.getFilterCriterion(CommandContext cc) String[]DAOSearchMicroclusterZone.getGroup(CommandContext cc) String[]DAOSearchMicroclusterZone.getStar(CommandContext cc) DAOSearchMicroclusterZone.getTable(CommandContext cc) protected CriterionDAOMicroclusterZone.getValuesCriterion(CommandContext cc) protected voidDAOSearchMicroclusterZone.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.location.nation.data
Methods in overit.geocallapp.wfm.core.bl.location.nation.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAONationSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.log.detail.data
Methods in overit.geocallapp.wfm.core.bl.log.detail.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOLogDetailSearch.getStar(CommandContext cc) protected voidDAOLogDetailSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.log.master.data
Methods in overit.geocallapp.wfm.core.bl.log.master.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOLogMasterSearch.getFilterCriterion(CommandContext cc) String[]DAOLogMasterSearch.getStar(CommandContext cc) protected voidDAOLogMasterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.material.data
Methods in overit.geocallapp.wfm.core.bl.material.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOMaterialSearch.getFilterCriterion(CommandContext cc) protected StringDAOMaterialSearch.getRangeValidityClause(CommandContext cc) String[]DAOMaterialSearch.getStar(CommandContext cc) protected voidDAOMaterialSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.material.goodsgroup.data
Methods in overit.geocallapp.wfm.core.bl.material.goodsgroup.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.material.history.data
Methods in overit.geocallapp.wfm.core.bl.material.history.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.material.itemtype.data
Methods in overit.geocallapp.wfm.core.bl.material.itemtype.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.material.managementtype.data
Methods in overit.geocallapp.wfm.core.bl.material.managementtype.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOMaterialManagementType.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.material.materialclass.data
Methods in overit.geocallapp.wfm.core.bl.material.materialclass.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.material.serialized.data
Methods in overit.geocallapp.wfm.core.bl.material.serialized.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOAccountedSerializedMaterialSearch.getFilterCriterion(CommandContext cc) DAOSerializedMaterial.getFilterCriterion(CommandContext cc) DAOAccountedSerializedMaterialSearch.getTable(CommandContext cc) protected voidDAOAccountedSerializedMaterialSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.material.serialized.model.data
Methods in overit.geocallapp.wfm.core.bl.material.serialized.model.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOSerializedMaterialModelSearch.getFilterCriterion(CommandContext cc) protected voidDAOSerializedMaterialModelSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.material.type.data
Methods in overit.geocallapp.wfm.core.bl.material.type.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.multimedia.mediafile.data
Methods in overit.geocallapp.wfm.core.bl.multimedia.mediafile.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOSearchMediaFile.getTable(CommandContext cc) protected voidDAOSearchMediaFile.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.multistage.configuration.data
Methods in overit.geocallapp.wfm.core.bl.multistage.configuration.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOMultistageConfiguration.getFilterCriterion(CommandContext cc) DAOMultistageConfigurationSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.multistage.group.header.data
Methods in overit.geocallapp.wfm.core.bl.multistage.group.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMultistageGroupHeaderSearch.defineSql(CommandContext cc, PoolKit pk) DAOMultistageGroupHeaderSearch.getFilterCriterion(CommandContext cc) protected StringDAOMultistageGroupHeaderSearch.getStartDateFromClause(CommandContext cc) protected StringDAOMultistageGroupHeaderSearch.getStartDateToClause(CommandContext cc) protected booleanDAOMultistageGroupHeaderSearch.thereAreFiltersOnSet(CommandContext cc, Set<String> filtersFields) protected voidDAOMultistageGroupHeaderSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.multistage.group.header.sequencenumber.data
Methods in overit.geocallapp.wfm.core.bl.multistage.group.header.sequencenumber.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMultistageGroupHeaderSequenceNumber.defineSql(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.multistage.group.operation.data
Methods in overit.geocallapp.wfm.core.bl.multistage.group.operation.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkOrderOperationMultistageGroup.getFilterCriterion(CommandContext cc) DAOWorkOrderOperationMultistageGroup.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.multistage.violation.data
Methods in overit.geocallapp.wfm.core.bl.multistage.violation.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMultistageViolationSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.notification.data
Methods in overit.geocallapp.wfm.core.bl.notification.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAONotifiableUserSearch.defineValues(CommandContext cc, PoolKit pk) protected CriterionDAONotifiableUserSearch.getFilterCriterion(CommandContext cc) DAONotifiableUserSearch.getForceLastSyncClause(CommandContext cc) protected voidDAONotifiableUserSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.permits.type.data
Methods in overit.geocallapp.wfm.core.bl.permits.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOPermitTypeSearch.validate(CommandContext cc, PoolKit poolKit) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.permits.type.outcomereason.rel.data
Methods in overit.geocallapp.wfm.core.bl.permits.type.outcomereason.rel.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOPermitTypeOutcomeReasonRelSearch.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.permits.workcycle.data
Methods in overit.geocallapp.wfm.core.bl.permits.workcycle.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAODistinctWorkCyclePermitType.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.permits.workorder.obtained.history.data
Methods in overit.geocallapp.wfm.core.bl.permits.workorder.obtained.history.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOPermitObtainedHistorySearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.permits.workorder.required.history.data
Methods in overit.geocallapp.wfm.core.bl.permits.workorder.required.history.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOPermitRequiredHistorySearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.bundler.data
Methods in overit.geocallapp.wfm.core.bl.schedule.bundler.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.dailyplan.configuration.order.detail.data
Methods in overit.geocallapp.wfm.core.bl.schedule.dailyplan.configuration.order.detail.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAODailyPlanOrderConfigurationDetailSearch.getFilterCriterion(CommandContext cc) protected voidDAODailyPlanOrderConfigurationDetailSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.dailyplan.configuration.order.header.data
Methods in overit.geocallapp.wfm.core.bl.schedule.dailyplan.configuration.order.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAODailyPlanOrderConfigurationHeaderSearch.defineParams(CommandContext cc, PoolKit pk) DAODailyPlanOrderConfigurationHeaderSearch.getFilterCriterion(CommandContext cc) String[]DAODailyPlanOrderConfigurationHeaderSearch.getStar(CommandContext cc) protected StringDAODailyPlanOrderConfigurationHeaderSearch.getUserVisibilityClause(CommandContext cc) protected voidDAODailyPlanOrderConfigurationHeaderSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.dailyplan.configuration.tooltip.header.data
Methods in overit.geocallapp.wfm.core.bl.schedule.dailyplan.configuration.tooltip.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected StringDAOTooltipConfigurationSearch.getActivityClause(CommandContext cc) protected CriterionDAOTooltipConfigurationSearch.getFilterCriterion(CommandContext cc) String[]DAOTooltipConfigurationSearch.getStar(CommandContext cc) protected StringDAOTooltipConfigurationSearch.getUserTypeClause(CommandContext cc) protected StringDAOTooltipConfigurationSearch.getWithNullActivityClause(CommandContext cc) protected StringDAOTooltipConfigurationSearch.getWithNullUserTypeClause(CommandContext cc) protected StringDAOTooltipConfigurationSearch.getWithoutRulesClause(CommandContext cc) protected voidDAOTooltipConfigurationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.intervention.agenda.history.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.agenda.history.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOAgendaHistorySearch.getFilterCriterion(CommandContext cc) String[]DAOAgendaHistorySearch.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.intervention.agenda.resource.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.agenda.resource.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOEmptyAgendaResourceDelete.getFilterCriterion(CommandContext cc) protected voidDAOEmptyAgendaResourceDelete.validate(CommandContext cc, PoolKit pk) protected voidDAOSearchAgendaResource.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.intervention.agenda.teamresource.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.agenda.teamresource.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOAgendaTeamResourceByWorkOrderDate.defineSql(CommandContext cc, PoolKit pk) protected CriterionDAOAgendaExtractTeamResources.getFilterCriterion(CommandContext cc) protected CriterionDAOAgendaTeamResource.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.intervention.appointment.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.appointment.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOAppointmentSearch.getFilterCriterion(CommandContext cc) protected voidDAOAppointmentSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.intervention.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOInterventionScheduled.defineValues(CommandContext cc, PoolKit poolKit) protected CriterionDAOInterventionScheduled.getFilterCriterion(CommandContext cc) protected StringDAOInterventionScheduled.getRealVirtualPlanClause(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.intervention.material.accountingmaterialtype.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.material.accountingmaterialtype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMaterialAccountingType.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.intervention.material.agendamaterial.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.material.agendamaterial.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOAgendaMaterialSearch.getFilterCriterion(CommandContext cc) String[]DAOAgendaMaterialSearch.getStar(CommandContext cc) DAOAgendaMaterialSearch.getTable(CommandContext cc) protected voidDAOAgendaMaterialSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.resourceshiftagendaffinity.data
Methods in overit.geocallapp.wfm.core.bl.schedule.resourceshiftagendaffinity.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOResourceShiftAgendaAffinity.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.role.data
Methods in overit.geocallapp.wfm.core.bl.schedule.role.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAORoleSearch.getTable(CommandContext cc) protected voidDAORoleSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.operationcenteraddress.data
Methods in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.operationcenteraddress.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOSearchOperationCenterAddress.getStar(CommandContext cc) DAOSearchOperationCenterAddress.getTable(CommandContext cc) protected voidDAOSearchOperationCenterAddress.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.resourceaddress.data
Methods in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.resourceaddress.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOSearchResourceAddress.getTable(CommandContext cc) protected voidDAOSearchResourceAddress.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.user.data
Methods in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.user.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSearchSchedulingUser.defineParams(CommandContext cc, PoolKit pk) protected voidDAOSchedulingUser.defineValues(CommandContext cc, PoolKit pk) protected CriterionDAOSchedulingUser.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchSchedulingUser.getFilterCriterion(CommandContext cc) String[]DAOSearchSchedulingUser.getStar(CommandContext cc) protected voidDAOSearchSchedulingUser.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.user.type.data
Methods in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.user.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSchedulingResourceType.getFilterCriterion(CommandContext cc) protected CriterionDAOSchedulingResourceTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOSchedulingResourceTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.workday.data
Methods in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.workday.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWorkDayClosureUsers.defineSql(CommandContext cc, PoolKit pk) protected voidDAOWorkDayClosureOnFieldAgenda.defineValues(CommandContext cc, PoolKit pk) protected voidDAOWorkDayClosureScheduledAgenda.defineValues(CommandContext cc, PoolKit pk) protected voidDAOWorkDayClosureUsers.defineValues(CommandContext cc, PoolKit pk) DAOWorkDayClosureOnFieldAgenda.getFilterCriterion(CommandContext cc) DAOWorkDayClosureScheduledAgenda.getFilterCriterion(CommandContext cc) protected voidDAOWorkDayClosureOnFieldAgenda.validate(CommandContext cc, PoolKit pk) protected voidDAOWorkDayClosureScheduledAgenda.validate(CommandContext cc, PoolKit pk) protected voidDAOWorkDayClosureUsers.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedule.wooperation.accountedmaterial.data
Methods in overit.geocallapp.wfm.core.bl.schedule.wooperation.accountedmaterial.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkOrderOperationAccountedMaterialSearch.getFilterCriterion(CommandContext cc) String[]DAOWorkOrderOperationAccountedMaterialSearch.getStar(CommandContext cc) DAOWorkOrderOperationAccountedMaterialSearch.getTable(CommandContext cc) protected voidDAOWorkOrderOperationAccountedMaterialSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedulingproposal.creation.data
Methods in overit.geocallapp.wfm.core.bl.schedulingproposal.creation.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSchedulingCreationProposal.defineValues(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedulingproposal.data
Methods in overit.geocallapp.wfm.core.bl.schedulingproposal.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSchedulingProposalSearch.validate(CommandContext cc, PoolKit poolKit) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedulingproposal.detail.data
Methods in overit.geocallapp.wfm.core.bl.schedulingproposal.detail.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOSchedulingProposalDetailSearch.getFilterCriterion(CommandContext cc) String[]DAOSchedulingProposalDetailSearch.getStar(CommandContext cc) DAOSchedulingProposalDetailSearch.getTable(CommandContext cc) protected voidDAOSchedulingProposalDetailSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedulingproposal.removal.data
Methods in overit.geocallapp.wfm.core.bl.schedulingproposal.removal.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSchedulingRemovalProposal.defineValues(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedulingproposal.state.data
Methods in overit.geocallapp.wfm.core.bl.schedulingproposal.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSchedulingProposalStateSearch.validate(CommandContext cc, PoolKit poolKit) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.schedulingproposal.type.data
Methods in overit.geocallapp.wfm.core.bl.schedulingproposal.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSchedulingProposalTypeSearch.validate(CommandContext cc, PoolKit poolKit) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.team.data
Methods in overit.geocallapp.wfm.core.bl.team.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.team.shift.data
Methods in overit.geocallapp.wfm.core.bl.team.shift.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOTeamShiftCompositionSearch.getFilterCriterion(CommandContext cc) DAOTeamShiftSearch.getFilterCriterion(CommandContext cc) DAOTeamShiftCompositionSearch.getTable(CommandContext cc) protected voidDAOTeamShiftCompositionSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOTeamShiftSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.contact.type.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.contact.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOContactTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOContactTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.feature.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.feature.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOTechnicalObjectFeatureValueHistory.defineValues(CommandContext cc, PoolKit pk) DAOTechnicalObjectFeatureValue.getFilterCriterion(CommandContext cc) DAOTechnicalObjectFeatureValueSearch.getFilterCriterion(CommandContext cc) protected voidDAOTechnicalObjectFeatureValueSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.header.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOTechnicalObjectFullSearch.defineSql(CommandContext cc, PoolKit pk) protected voidDAOTechnicalObjectHierarchicalSearch.defineSql(CommandContext cc, PoolKit pk) protected voidDAOCustomerSearch.defineValues(CommandContext cc, PoolKit pk) protected voidDAOTechnicalObjectFullSearch.defineValues(CommandContext cc, PoolKit pk) protected StringDAOCustomerSearch.getCustomerAssociationClause(CommandContext cc) protected StringDAOTechnicalObjectFullSearch.getCustomerAssociationClause(CommandContext cc) protected StringDAOTechnicalObjectFullSearch.getCustomerPartnerClause(CommandContext cc) DAOCustomerSearch.getFilterCriterion(CommandContext cc) DAOTechnicalObject.getFilterCriterion(CommandContext cc) DAOTechnicalObjectFullSearch.getFilterCriterion(CommandContext cc) protected StringDAOCustomerSearch.getMeterClause(CommandContext cc) protected StringDAOTechnicalObjectFullSearch.getOnlyRelatedAssetsCondition(CommandContext cc, String fieldName) protected StringDAOTechnicalObjectFullSearch.getOperationCenterClause(CommandContext cc) String[]DAOCustomerSearch.getOrder(CommandContext cc) String[]DAOTechnicalObjectFullSearch.getOrder(CommandContext cc) protected StringDAOTechnicalObjectFullSearch.getRolesClause(CommandContext cc) protected StringDAOTechnicalObjectFullSearch.getRootIdClause(CommandContext cc) protected StringDAOTechnicalObjectFullSearch.getSelectionFields(CommandContext cc) String[]DAOCustomerSearch.getStar(CommandContext cc) String[]DAOTechnicalObjectFullSearch.getStar(CommandContext cc) String[]DAOTechnicalObjectHierarchicalSearch.getStar(CommandContext cc) DAOCustomerSearch.getTable(CommandContext cc) DAOTechnicalObjectFullSearch.getTable(CommandContext cc) DAOTechnicalObjectHierarchicalSearch.getTable(CommandContext cc) protected StringDAOTechnicalObject.getTechnicalObjectVisibilityClause(CommandContext cc) protected StringDAOTechnicalObject.getTechnicalObjectWithNullOCVisibilityClause(CommandContext cc) protected StringDAOTechnicalObjectFullSearch.getTechnicalObjectWithNullOCVisibilityClause(CommandContext cc) protected StringDAOTechnicalObjectFullSearch.getTOBranchClause(CommandContext cc) protected StringDAOTechnicalObjectHierarchicalSearch.getWithStatement(CommandContext cc) protected voidDAOTechnicalObjectFullSearch.setFixedClauses(Condition where, CommandContext cc) protected voidDAOCustomerSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOTechnicalObjectFullSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOTechnicalObjectHierarchicalSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.meter.brand.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.brand.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeterBrand.getFilterCriterion(CommandContext cc) protected CriterionDAOMeterBrandSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeterBrandSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.meter.convertertype.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.convertertype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOConverterTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOConverterTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.meter.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMeter.defineValues(CommandContext cc, PoolKit poolKit) protected CriterionDAOMeterSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.meter.location.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.location.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeterLocationSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeterLocationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.meter.meterclass.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.meterclass.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeterClassSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeterClassSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.meter.reading.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.reading.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMeterReading.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.meter.reading.state.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.reading.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMeterReadingState.defineValues(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.meter.type.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeterTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeterTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.state.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTechnicalObjectStateSearch.getFilterCriterion(CommandContext cc) DAOSearchTechnicalObjectAdmittedState.getTable(CommandContext cc) protected voidDAOSearchTechnicalObjectAdmittedState.validate(CommandContext cc, PoolKit pk) protected voidDAOTechnicalObjectStateSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.statetype.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.statetype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTechnicalObjectStateTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOTechnicalObjectStateTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.type.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOTechnicalObjectType.defineValues(CommandContext cc, PoolKit pk) protected CriterionDAOTechnicalObjectType.getFilterCriterion(CommandContext cc) protected CriterionDAOTechnicalObjectTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOTechnicalObjectTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.technicalobject.type.template.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.type.template.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTechnicalObjectTypeTemplateSearch.getFilterCriterion(CommandContext cc) protected voidDAOTechnicalObjectTypeTemplateSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.timesheet.configuration.category.data
Methods in overit.geocallapp.wfm.core.bl.timesheet.configuration.category.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTaskCategorySearch.getFilterCriterion(CommandContext cc) protected voidDAOTaskCategorySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.timesheet.data
Methods in overit.geocallapp.wfm.core.bl.timesheet.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected StringDAOTimesheetSearch.getEndDateFromClause(CommandContext cc) protected StringDAOTimesheetSearch.getEndDateToClause(CommandContext cc) DAOTimesheetSearch.getFilterCriterion(CommandContext cc) String[]DAOTimesheetSearch.getStar(CommandContext cc) protected StringDAOTimesheetSearch.getStartDateFromClause(CommandContext cc) protected StringDAOTimesheetSearch.getStartDateToClause(CommandContext cc) protected StringDAOTimesheetSearch.getWarningClause(CommandContext cc) protected voidDAOTimesheetSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.timesheet.timesheettask.data
Methods in overit.geocallapp.wfm.core.bl.timesheet.timesheettask.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOTaskSearch.getFilterCriterion(CommandContext cc) protected voidDAOTaskSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.timesheet.timesheettask.evententity.data
Methods in overit.geocallapp.wfm.core.bl.timesheet.timesheettask.evententity.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOEventEntitySearch.getFilterCriterion(CommandContext cc) protected voidDAOEventEntitySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.user.data
Methods in overit.geocallapp.wfm.core.bl.user.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOLoadAllUsers.defineValues(CommandContext cc, PoolKit pk) protected voidDAOUser.defineValues(CommandContext cc, PoolKit pk) protected CriterionDAOCheckUser.getFilterCriterion(CommandContext cc) protected CriterionDAOLoadAllUsers.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchUsers.getFilterCriterion(CommandContext cc) protected CriterionDAOUser.getFilterCriterion(CommandContext cc) String[]DAOSearchUsers.getStar(CommandContext cc) DAOLoadAllUsers.getVisibilityClause(CommandContext cc) protected voidDAOLoadAllUsers.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.user.type.data
Methods in overit.geocallapp.wfm.core.bl.user.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOUserType.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.audit.data
Methods in overit.geocallapp.wfm.core.bl.workorder.audit.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkOrderInterventionPlanningSearch.getTable(CommandContext cc) protected voidDAOWorkOrderInterventionPlanningSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.header.data
Methods in overit.geocallapp.wfm.core.bl.workorder.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkOrderHeader.getFilterCriterion(CommandContext cc) DAOWorkOrderHeaderSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderHeaderSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.operation.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operation.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkOrderOperationSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.operation.material.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operation.material.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWorkOrderOperationMaterialSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.operation.state.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operation.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderOperationStateSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderOperationStateSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.operation.type.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operation.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderOperationType.getFilterCriterion(CommandContext cc) protected CriterionDAOWorkOrderOperationTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderOperationTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.operationactivity.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operationactivity.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOOperationActivity.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.operationactivity.workorderoperationtype.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operationactivity.workorderoperationtype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderOperationTypeActivity.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.operationtype.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operationtype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOOperationType.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.requesttype.data
Methods in overit.geocallapp.wfm.core.bl.workorder.requesttype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAORequestType.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.servicetype.data
Methods in overit.geocallapp.wfm.core.bl.workorder.servicetype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOServiceType.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.state.data
Methods in overit.geocallapp.wfm.core.bl.workorder.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderStateSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderStateSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.type.data
Methods in overit.geocallapp.wfm.core.bl.workorder.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderType.getFilterCriterion(CommandContext cc) protected CriterionDAOWorkOrderTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.urgency.data
Methods in overit.geocallapp.wfm.core.bl.workorder.urgency.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderUrgencySearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderUrgencySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.workcycle.header.data
Methods in overit.geocallapp.wfm.core.bl.workorder.workcycle.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkCycleHeader.getFilterCriterion(CommandContext cc) Returns the filter criterion. -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workorder.workcycle.operation.data
Methods in overit.geocallapp.wfm.core.bl.workorder.workcycle.operation.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkCycleOperation.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workshift.data
Methods in overit.geocallapp.wfm.core.bl.workshift.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWorkShiftSearch.defineParams(CommandContext cc, PoolKit pk) protected CriterionDAOWorkShift.getFilterCriterion(CommandContext cc) protected CriterionDAOWorkShiftSearch.getFilterCriterion(CommandContext cc) String[]DAOWorkShift.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workshift.exceptionrequest.data
Methods in overit.geocallapp.wfm.core.bl.workshift.exceptionrequest.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOResourceShiftExceptionRequest.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workshift.oncall.data
Methods in overit.geocallapp.wfm.core.bl.workshift.oncall.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOOnCallShift.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workshift.receipt.data
Methods in overit.geocallapp.wfm.core.bl.workshift.receipt.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOReceipt.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchReceipt.getFilterCriterion(CommandContext cc) protected voidDAOSearchReceipt.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workshift.receipt.type.data
Methods in overit.geocallapp.wfm.core.bl.workshift.receipt.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSearchClassReceiptType.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.bl.workshift.type.data
Methods in overit.geocallapp.wfm.core.bl.workshift.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSearchWorkShiftType.defineSql(CommandContext cc, PoolKit pk) protected voidDAOSearchWorkShiftType.defineStatement(CommandContext cc, PoolKit pk, DBStatement dbs) protected StringDAOSearchWorkShiftType.getFacilitieslClause(CommandContext cc) protected CriterionDAOSearchWorkShiftType.getFilterCriterion(CommandContext cc) protected StringDAOSearchWorkShiftType.getQualificationslClause(CommandContext cc) protected StringDAOSearchWorkShiftType.getSkillClause(CommandContext cc) protected StringDAOSearchWorkShiftType.getStaticClauses(CommandContext cc) protected voidDAOSearchWorkShiftType.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.ux.crewshell.scheduling.model.search.data
Methods in overit.geocallapp.wfm.core.ux.crewshell.scheduling.model.search.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOCrewShellWorkingTeam.defineValues(CommandContext cc, PoolKit pk) DAOCrewShellWorkingTeam.getFilterCriterion(CommandContext cc) String[]DAOCrewShellWorkingTeam.getOrder(CommandContext cc) String[]DAOCrewShellWorkingTeam.getStar(CommandContext cc) DAOCrewShellWorkingTeam.getTable(CommandContext cc) protected voidDAOCrewShellWorkingTeam.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.ux.schedule.tooltip.data
Methods in overit.geocallapp.wfm.core.ux.schedule.tooltip.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected StringDAOAccountedActivityTooltipData.getCrewShellClause(CommandContext cc) protected CriterionDAOAccountedActivityTooltipData.getFilterCriterion(CommandContext cc) DAOAccountedActivityTooltipData.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.core.ux.workorder.massivegeneration.data
Methods in overit.geocallapp.wfm.core.ux.workorder.massivegeneration.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWorkOrderObjectsExtractor.defineParams(CommandContext cc, PoolKit pk) protected voidDAOWorkOrderObjectsExtractor.defineSql(CommandContext cc, PoolKit pk) protected CriterionDAOOperationsSlots.getFilterCriterion(CommandContext cc) protected FragmentDAOWorkOrderObjectsExtractor.getInnerQuery(CommandContext cc) String[]DAOWorkOrderObjectsExtractor.getSelectionFields(CommandContext cc) protected voidDAOOperationsSlots.validate(CommandContext cc, PoolKit pk) protected voidDAOWorkOrderObjectsExtractor.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.core.virtualcollaboration.rs1.common
Methods in overit.geocallapp.wfm.core.virtualcollaboration.rs1.common with parameters of type CommandContextModifier and TypeMethodDescriptionprotected DBViewWFMPrivateListMicroService.query(DAO dao, CommandContext cc) Execute a query hiding the size and skip records management -
Uses of CommandContext in overit.geocallapp.wfm.crewshell.bl.composition.data
Methods in overit.geocallapp.wfm.crewshell.bl.composition.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCrewShellCompositionSearch.getFilterCriterion(CommandContext cc) String[]DAOCrewShellCompositionSearch.getStar(CommandContext cc) protected voidDAOCrewShellCompositionSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.crewshell.bl.data
Methods in overit.geocallapp.wfm.crewshell.bl.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCrewShellSearch.getFilterCriterion(CommandContext cc) protected StringDAOCrewShellSearch.getSkillsClause(CommandContext cc) String[]DAOCrewShellSearch.getStar(CommandContext cc) protected StringDAOCrewShellSearch.getUsersClause(CommandContext cc) protected voidDAOCrewShellSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.crewshell.bl.type.data
Methods in overit.geocallapp.wfm.crewshell.bl.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCrewShellTypeSearch.getFilterCriterion(CommandContext cc) String[]DAOCrewShellTypeSearch.getStar(CommandContext cc) protected voidDAOCrewShellTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.crewshell.bl.workshift.data
Methods in overit.geocallapp.wfm.crewshell.bl.workshift.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOCrewShellWorkShiftSearch.defineParams(CommandContext cc, PoolKit poolKit) protected StringDAOCrewShellWorkShiftSearch.getDummyClause(CommandContext cc) DAOCrewShellWorkShiftSearch.getFilterCriterion(CommandContext cc) protected voidDAOCrewShellWorkShiftSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.census.rule.data
Methods in overit.geocallapp.wfm.execution.bl.census.rule.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOCensusRuleSearch.getFilterCriterion(CommandContext cc) protected voidDAOCensusRuleSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.encodednote.data
Methods in overit.geocallapp.wfm.execution.bl.encodednote.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOEncodedNoteSearch.getFilterCriterion(CommandContext cc) protected voidDAOEncodedNoteSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.intervention.data
Methods in overit.geocallapp.wfm.execution.bl.intervention.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOInterventionSearch.getFilterCriterion(CommandContext cc) protected StringDAOInterventionSearch.getOutcomeEndDateClause(CommandContext cc, String parameter) Returns the SQL clause for filtering by outcome end date.protected CriteriaDAOInterventionSearch.getResourceInterventionsSearchCriteria(CommandContext cc) Returns the criteria for filtering by resource interventions.protected CriteriaDAOInterventionSearch.getResourceWithInterventionsSearchCriteria(CommandContext cc) Returns the criteria for filtering by resource with interventions.protected voidDAOInterventionSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.intervention.resource.data
Methods in overit.geocallapp.wfm.execution.bl.intervention.resource.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOInterventionResourceSearch.getFilterCriterion(CommandContext cc) protected voidDAOInterventionResourceSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.intervention.resource.hourtype.data
Methods in overit.geocallapp.wfm.execution.bl.intervention.resource.hourtype.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.intervention.resource.workorder.operation.data
Methods in overit.geocallapp.wfm.execution.bl.intervention.resource.workorder.operation.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkOrderOperationResourceSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderOperationResourceSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.intervention.status.data
Methods in overit.geocallapp.wfm.execution.bl.intervention.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOInterventionStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOInterventionStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.interventiongroup.censusrule.data
Methods in overit.geocallapp.wfm.execution.bl.interventiongroup.censusrule.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOInterventionGroupCensusRuleSearch.getFilterCriterion(CommandContext cc) protected voidDAOInterventionGroupCensusRuleSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.outcome.intervention.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.intervention.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOInterventionOutcomeSearch.getFilterCriterion(CommandContext cc) protected voidDAOInterventionOutcomeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.outcome.reason.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.reason.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOOutcomeReasonSearch.getFilterCriterion(CommandContext cc) protected voidDAOOutcomeReasonSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.outcome.reason.encodednote.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.reason.encodednote.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOOutcomeReasonEncodedNoteSearch.getFilterCriterion(CommandContext cc) protected voidDAOOutcomeReasonEncodedNoteSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.outcome.reason.type.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.reason.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOOutcomeReasonTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOOutcomeReasonTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.outcome.type.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOOutcomeTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOOutcomeTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.outcome.validation.status.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.validation.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOValidationStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOValidationStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.outcome.workorderorigin.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.workorderorigin.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOOutcomeWorkOrderOriginSearch.getFilterCriterion(CommandContext cc) protected voidDAOOutcomeWorkOrderOriginSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.execution.bl.outcomeclass.data
Methods in overit.geocallapp.wfm.execution.bl.outcomeclass.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOOutcomeClassSearch.getFilterCriterion(CommandContext cc) protected voidDAOOutcomeClassSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.result.detail.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.result.detail.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.addSelectActivityFields(ArrayList<String> fields, CommandContext cc) protected voidDAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.addSelectCommonFields(ArrayList<String> fields, CommandContext cc) protected voidDAOCapacityPlanningResultDetailCommittedCapacitySearch.addSelectCommonFields(ArrayList<String> fields, CommandContext cc) protected voidDAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.addSelectDailyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOCapacityPlanningResultDetailCommittedCapacitySearch.addSelectDailyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.addSelectMonthlyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOCapacityPlanningResultDetailCommittedCapacitySearch.addSelectMonthlyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.addSelectResourceFields(ArrayList<String> fields, CommandContext cc) protected voidDAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.addSelectSkillFields(ArrayList<String> fields, CommandContext cc) protected voidDAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.addSelectWeeklyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOCapacityPlanningResultDetailCommittedCapacitySearch.addSelectWeeklyFields(ArrayList<String> fields, CommandContext cc) DAOCapacityPlanningResourceResultCoverageDetailSearch.getFilterCriterion(CommandContext cc) DAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.getFilterCriterion(CommandContext cc) DAOCapacityPlanningResultDetailCommittedCapacitySearch.getFilterCriterion(CommandContext cc) String[]DAOCapacityPlanningResourceResultCoverageDetailSearch.getGroup(CommandContext cc) String[]DAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.getGroup(CommandContext cc) String[]DAOCapacityPlanningResultDetailCommittedCapacitySearch.getGroup(CommandContext cc) protected StringDAOCapacityPlanningResourceResultCoverageDetailSearch.getSkillClause(CommandContext cc) String[]DAOCapacityPlanningResourceResultCoverageDetailSearch.getStar(CommandContext cc) String[]DAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.getStar(CommandContext cc) String[]DAOCapacityPlanningResultDetailCommittedCapacitySearch.getStar(CommandContext cc) DAOCapacityPlanningActivityResultSearch.getTable(CommandContext cc) DAOCapacityPlanningResourceResultCoverageDetailSearch.getTable(CommandContext cc) DAOCapacityPlanningResourceResultSearch.getTable(CommandContext cc) DAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.getTable(CommandContext cc) protected voidDAOCapacityPlanningActivityResultSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOCapacityPlanningResourceResultCoverageDetailSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOCapacityPlanningResourceResultSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOCapacityPlanningResultDetailCommittedCapacitySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.scenario.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.scenario.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCapacityPlanningScenarioSearch.getFilterCriterion(CommandContext cc) protected voidDAOCapacityPlanningScenarioSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.scenario.detail.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.scenario.detail.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCapacityPlanningScenarioDetailSearch.getFilterCriterion(CommandContext cc) String[]DAOCapacityPlanningScenarioDetailSearch.getStar(CommandContext cc) DAOCapacityPlanningScenarioDetailSearch.getTable(CommandContext cc) protected voidDAOCapacityPlanningScenarioDetailSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.state.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCapacityPlanningState.getFilterCriterion(CommandContext cc) protected voidDAOCapacityPlanningState.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOActivityForecastHeaderSearch.getFilterCriterion(CommandContext cc) protected voidDAOActivityForecastHeaderSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.detail.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.detail.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOForecastActivityDetailDemandAndSkillSearch.addSelectActivityFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastActivityDetailDemandAndSkillSearch.addSelectCommonFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastActivityDetailDemandSearch.addSelectCommonFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastActivityDetailDemandAndSkillSearch.addSelectDailyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastActivityDetailDemandSearch.addSelectDailyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastActivityDetailDemandAndSkillSearch.addSelectMonthlyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastActivityDetailDemandSearch.addSelectMonthlyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastActivityDetailDemandAndSkillSearch.addSelectSkillFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastActivityDetailDemandAndSkillSearch.addSelectWeeklyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastActivityDetailDemandSearch.addSelectWeeklyFields(ArrayList<String> fields, CommandContext cc) DAOForecastActivityDetailDemandAndSkillSearch.getFilterCriterion(CommandContext cc) DAOForecastActivityDetailDemandSearch.getFilterCriterion(CommandContext cc) DAOForecastActivityDetailSearch.getFilterCriterion(CommandContext cc) String[]DAOForecastActivityDetailDemandAndSkillSearch.getGroup(CommandContext cc) String[]DAOForecastActivityDetailDemandSearch.getGroup(CommandContext cc) String[]DAOForecastActivityDetailDemandAndSkillSearch.getStar(CommandContext cc) String[]DAOForecastActivityDetailDemandSearch.getStar(CommandContext cc) String[]DAOForecastActivityDetailSearch.getStar(CommandContext cc) DAOForecastActivityDetailDemandAndSkillSearch.getTable(CommandContext cc) DAOForecastActivityDetailSearch.getTable(CommandContext cc) protected voidDAOForecastActivityDetailDemandAndSkillSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOForecastActivityDetailDemandSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOForecastActivityDetailSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.forecastactivity.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.forecastactivity.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOForecastActivityGanttSearch.defineParams(CommandContext cc, PoolKit poolKit) protected StringDAOForecastActivityGanttSearch.getDateFromClause(CommandContext cc, String field) Builds the SQL clause for filtering by a "from date" condition on a given fieldprotected StringDAOForecastActivityGanttSearch.getDateToClause(CommandContext cc, String field) Builds the SQL clause for filtering by a "to date" condition on a given fieldprotected StringDAOForecastActivityGanttSearch.getDetailDecision(CommandContext cc) DAOForecastActivityGanttSearch.getFilterCriterion(CommandContext cc) DAOForecastActivitySearch.getFilterCriterion(CommandContext cc) String[]DAOForecastActivityGanttSearch.getStar(CommandContext cc) DAOForecastActivityGanttSearch.getTable(CommandContext cc) protected voidDAOForecastActivitySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.gantt.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.gantt.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOForecastActivityDetailGanttSearch.getFilterCriterion(CommandContext cc) String[]DAOForecastActivityDetailGanttSearch.getStar(CommandContext cc) DAOForecastActivityDetailGanttSearch.getTable(CommandContext cc) protected voidDAOForecastActivityDetailGanttSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.importfilter.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.importfilter.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOForecastActivityImportFilterSearch.getFilterCriterion(CommandContext cc) protected voidDAOForecastActivityImportFilterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.priority.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.priority.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOForecastActivityPrioritySearch.getFilterCriterion(CommandContext cc) protected voidDAOForecastActivityPrioritySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.skill.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.skill.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOForecastActivityByAllSkillSearch.addSelectFields(ArrayList<String> fields, CommandContext cc) DAOForecastActivityByAllSkillSearch.getFilterCriterion(CommandContext cc) DAOForecastActivitySkillSearch.getFilterCriterion(CommandContext cc) String[]DAOForecastActivityByAllSkillSearch.getGroup(CommandContext cc) String[]DAOForecastActivityByAllSkillSearch.getStar(CommandContext cc) protected voidDAOForecastActivityByAllSkillSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOForecastActivitySkillSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.groupingconstraint.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.groupingconstraint.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOForecastGroupingConstraintSearch.getFilterCriterion(CommandContext cc) protected voidDAOForecastGroupingConstraintSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.importforecast.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.importforecast.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOSharedResourceWithLog.getFilterCriterion(CommandContext cc) String[]DAOSharedResourceWithLog.getStar(CommandContext cc) DAOSharedResourceWithLog.getTable(CommandContext cc) protected voidDAOSharedResourceWithLog.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOResourceForecastHeaderSearch.getFilterCriterion(CommandContext cc) String[]DAOResourceForecastHeaderSearch.getStar(CommandContext cc) protected voidDAOResourceForecastHeaderSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.detail.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.detail.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOForecastResourceDetailAvailableCapacityResourceSearch.addSelectCommonFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastResourceDetailAvailableCapacitySearch.addSelectCommonFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastResourceDetailAvailableCapacityResourceSearch.addSelectDailyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastResourceDetailAvailableCapacitySearch.addSelectDailyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastResourceDetailAvailableCapacityResourceSearch.addSelectMonthlyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastResourceDetailAvailableCapacitySearch.addSelectMonthlyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastResourceDetailAvailableCapacityResourceSearch.addSelectResourceFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastResourceDetailAvailableCapacityResourceSearch.addSelectSkillFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastResourceDetailAvailableCapacityResourceSearch.addSelectWeeklyFields(ArrayList<String> fields, CommandContext cc) protected voidDAOForecastResourceDetailAvailableCapacitySearch.addSelectWeeklyFields(ArrayList<String> fields, CommandContext cc) DAOForecastResourceDetailAvailableCapacityResourceSearch.getFilterCriterion(CommandContext cc) DAOForecastResourceDetailAvailableCapacitySearch.getFilterCriterion(CommandContext cc) DAOForecastResourceDetailSearch.getFilterCriterion(CommandContext cc) String[]DAOForecastResourceDetailAvailableCapacityResourceSearch.getGroup(CommandContext cc) String[]DAOForecastResourceDetailAvailableCapacitySearch.getGroup(CommandContext cc) String[]DAOForecastResourceDetailAvailableCapacityResourceSearch.getStar(CommandContext cc) String[]DAOForecastResourceDetailAvailableCapacitySearch.getStar(CommandContext cc) DAOForecastResourceDetailAvailableCapacityResourceSearch.getTable(CommandContext cc) protected voidDAOForecastResourceDetailAvailableCapacityResourceSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOForecastResourceDetailAvailableCapacitySearch.validate(CommandContext cc, PoolKit pk) protected voidDAOForecastResourceDetailSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.forecastresource.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.forecastresource.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOForecastResourceSearch.getFilterCriterion(CommandContext cc) protected voidDAOForecastResourceSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.shiftmodel.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.shiftmodel.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOForecastShiftModelSearch.getFilterCriterion(CommandContext cc) protected voidDAOForecastShiftModelSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.shiftmodel.detail.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.shiftmodel.detail.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOForecastShiftModelDetailSearch.getFilterCriterion(CommandContext cc) protected voidDAOForecastShiftModelDetailSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.skill.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.skill.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOForecastResourceByAllSkillSearch.addSelectFields(ArrayList<String> fields, CommandContext cc) DAOForecastResourceByAllSkillSearch.getFilterCriterion(CommandContext cc) DAOForecastResourceSkillSearch.getFilterCriterion(CommandContext cc) String[]DAOForecastResourceByAllSkillSearch.getGroup(CommandContext cc) String[]DAOForecastResourceByAllSkillSearch.getStar(CommandContext cc) protected voidDAOForecastResourceByAllSkillSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOForecastResourceSkillSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.forecastcapacity.bl.forecast.state.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOForecastState.getFilterCriterion(CommandContext cc) protected voidDAOForecastState.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.gpstracking.bl.resource.position.data
Methods in overit.geocallapp.wfm.gpstracking.bl.resource.position.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOResourceGPSPositionSearch.getFilterCriterion(CommandContext cc) protected voidDAOResourceGPSPositionSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.gpstracking.bl.resource.position.last.data
Methods in overit.geocallapp.wfm.gpstracking.bl.resource.position.last.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOResourceLastGPSPositionSearch.getFilterCriterion(CommandContext cc) protected voidDAOResourceLastGPSPositionSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.importexport.material.data
Methods in overit.geocallapp.wfm.inventory.bl.importexport.material.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOSharedResourceWithLog.getFilterCriterion(CommandContext cc) String[]DAOSharedResourceWithLog.getStar(CommandContext cc) DAOSharedResourceWithLog.getTable(CommandContext cc) protected voidDAOSharedResourceWithLog.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.central.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.central.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOCentralWarehouseSearch.defineParams(CommandContext cc, PoolKit pk) protected voidDAOCentralWarehouse.defineValues(CommandContext cc, PoolKit pk) DAOCentralWarehouseSearch.getFilterCriterion(CommandContext cc) protected StringDAOCentralWarehouseSearch.getOperationCenterClause(CommandContext cc) protected voidDAOCentralWarehouseSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.central.operationcenter.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.central.operationcenter.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWarehouseOperationCenter.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.centralmobile.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.centralmobile.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWarehouseCentralMobileSearch.getFilterCriterion(CommandContext cc) protected StringDAOWarehouseCentralMobileSearch.getOperationCenterClause(CommandContext cc) protected voidDAOWarehouseCentralMobileSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWarehouseSearch.defineParams(CommandContext cc, PoolKit pk) DAOWarehouse.getFilterCriterion(CommandContext cc) DAOWarehouseSearch.getFilterCriterion(CommandContext cc) protected StringDAOWarehouseSearch.getOperationCenterClause(CommandContext cc) protected StringDAOWarehouseSearch.getPreferredWarehouseClause(CommandContext cc) String[]DAOWarehouseSearch.getStar(CommandContext cc) protected voidDAOWarehouseSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.intervention.material.agendamaterial.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.intervention.material.agendamaterial.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOWarehouseAgendaMaterialWithOperationSearch.getStar(CommandContext cc) DAOWarehouseAgendaMaterialWithOperationSearch.getTable(CommandContext cc) protected voidDAOWarehouseAgendaMaterialSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.material.availability.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.material.availability.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWarehouseMaterialAvailability.getFilterCriterion(CommandContext cc) DAOWarehouseMaterialAvailability.getTable(CommandContext cc) protected voidDAOWarehouseMaterialAvailability.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.material.detail.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.material.detail.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWarehouseMaterialSearch.getFilterCriterion(CommandContext cc) String[]DAOWarehouseMaterialSearch.getStar(CommandContext cc) DAOWarehouseMaterialSearch.getTable(CommandContext cc) protected voidDAOWarehouseMaterialSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.material.expected.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.material.expected.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOExpectedMaterialSearch.getFilterCriterion(CommandContext cc) DAOMaterialExpectedQuantity.getFilterCriterion(CommandContext cc) String[]DAOExpectedMaterialSearch.getStar(CommandContext cc) DAOExpectedMaterialSearch.getTable(CommandContext cc) DAOMaterialExpectedQuantity.getTable(CommandContext cc) protected StringDAOExpectedMaterialSearch.getWarehouseClause(CommandContext cc) protected voidDAOExpectedMaterialSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOMaterialExpectedQuantity.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.materialstock.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.materialstock.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWarehouseMaterialStockSearch.defineSql(CommandContext cc, PoolKit pk) protected voidDAOWarehouseMaterialStockSearch.defineStatement(CommandContext cc, PoolKit pk, DBStatement dbs) DAOWarehouseMaterialStockSearch.getFilterCriterion(CommandContext cc) String[]DAOWarehouseMaterialStockSearch.getGroup(CommandContext cc) DAOWarehouseMaterialStockSearch.getGroupByFields(CommandContext cc) protected StringDAOWarehouseMaterialStockSearch.getHaving(CommandContext cc) String[]DAOWarehouseMaterialStockSearch.getOrder(CommandContext cc) DAOWarehouseMaterialStockSearch.getOrderByFields(CommandContext cc) String[]DAOWarehouseMaterialStockSearch.getStar(CommandContext cc) DAOWarehouseMaterialStockSearch.getTable(CommandContext cc) protected voidDAOWarehouseMaterialStockSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.materialstock.detail.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.materialstock.detail.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOStockSerializedMaterialDetail.getTable(CommandContext cc) protected voidDAOStockSerializedMaterialDetail.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.mobile.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.mobile.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMobileWarehouse.defineValues(CommandContext cc, PoolKit pk) DAOMobileWarehouseSearch.getFilterCriterion(CommandContext cc) protected StringDAOMobileWarehouseSearch.getOperationCenterClause(CommandContext cc) protected voidDAOMobileWarehouseSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.operation.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.operation.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWarehouseOperationSearch.getFilterCriterion(CommandContext cc) protected StringDAOWarehouseOperationSearch.getItemWithErrorClause(CommandContext cc) protected StringDAOWarehouseOperationSearch.getMaterialBrandClause(CommandContext cc) protected StringDAOWarehouseOperationSearch.getMaterialClassClause(CommandContext cc) protected StringDAOWarehouseOperationSearch.getMaterialClause(CommandContext cc) protected StringDAOWarehouseOperationSearch.getMaterialGoodsGroupClause(CommandContext cc) protected StringDAOWarehouseOperationSearch.getMaterialItemType(CommandContext cc) protected StringDAOWarehouseOperationSearch.getMaterialManagementType(CommandContext cc) protected StringDAOWarehouseOperationSearch.getSerializedMaterialClause(CommandContext cc) String[]DAOWarehouseOperationSearch.getStar(CommandContext cc) DAOWarehouseOperationSearch.getTable(CommandContext cc) protected StringDAOWarehouseOperationSearch.getVisibleWarehouseClause(CommandContext cc) protected voidDAOWarehouseOperationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.operation.header.state.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.operation.header.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWarehouseOperationHeaderState.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.operation.item.state.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.operation.item.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWarehouseOperationItemState.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.operation.type.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.operation.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWarehouseOperationType.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.serializedmaterial.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.serializedmaterial.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected StringDAOSerializedMaterialSearchByStock.getExcludeInUseSerialsClause(CommandContext cc) DAOSerializedMaterialSearchByStock.getFilterCriterion(CommandContext cc) protected voidDAOSerializedMaterialSearchByStock.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.state.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWarehouseState.getFilterCriterion(CommandContext cc) protected voidDAOWarehouseState.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.stock.change.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.stock.change.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOStockChangeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.stock.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.stock.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOStockSearch.getFilterCriterion(CommandContext cc) protected StringDAOStockSearch.getSerializedMaterialClause(CommandContext cc) DAOStockSearch.getTable(CommandContext cc) protected voidDAOStockSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.stock.history.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.stock.history.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOStockHistorySearch.getFilterCriterion(CommandContext cc) String[]DAOStockHistorySearch.getStar(CommandContext cc) protected voidDAOStockHistorySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.stock.type.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.stock.type.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.trackingmode.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.trackingmode.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWarehouseTrackingMode.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.transaction.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.transaction.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWarehouseTransactionSearch.getFilterCriterion(CommandContext cc) String[]DAOWarehouseTransactionSearch.getStar(CommandContext cc) protected voidDAOWarehouseTransactionSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.transfer.request.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.transfer.request.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected StringDAOTransferRequestSearch.getCreatedByMobileClause(CommandContext cc) DAOTransferRequestSearch.getFilterCriterion(CommandContext cc) protected StringDAOTransferRequestSearch.getMaterialBrandClause(CommandContext cc) protected StringDAOTransferRequestSearch.getMaterialClassClause(CommandContext cc) protected StringDAOTransferRequestSearch.getMaterialClause(CommandContext cc) protected StringDAOTransferRequestSearch.getMaterialGoodsGroupClause(CommandContext cc) protected StringDAOTransferRequestSearch.getMaterialItemTypeClause(CommandContext cc) protected StringDAOTransferRequestSearch.getMaterialManagementTypeClause(CommandContext cc) protected StringDAOTransferRequestSearch.getSerializedMaterialsClause(CommandContext cc) String[]DAOTransferRequestSearch.getStar(CommandContext cc) DAOTransferRequestSearch.getTable(CommandContext cc) protected StringDAOTransferRequestSearch.getVisibleWarehouseClause(CommandContext cc) protected voidDAOTransferRequestSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.transfer.request.state.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.transfer.request.state.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.inventory.bl.warehouse.type.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWarehouseType.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.inventory.replicator.data
Methods in overit.geocallapp.wfm.inventory.replicator.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWarehouseCentralMobile.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.locations.bl.address.data
Methods in overit.geocallapp.wfm.locations.bl.address.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAddressSearch.getFilterCriterion(CommandContext cc) protected voidDAOAddressSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOSchedulingAddressCoordinatesSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.locations.bl.address.type.data
Methods in overit.geocallapp.wfm.locations.bl.address.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAddressTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOAddressTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.locations.bl.country.data
Methods in overit.geocallapp.wfm.locations.bl.country.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOCountrySearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.locations.bl.district.data
Methods in overit.geocallapp.wfm.locations.bl.district.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAODistrictSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.locations.bl.geocoding.status.data
Methods in overit.geocallapp.wfm.locations.bl.geocoding.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOGeocodingStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOGeocodingStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.locations.bl.municipality.data
Methods in overit.geocallapp.wfm.locations.bl.municipality.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMunicipalitySearch.getFilterCriterion(CommandContext cc) protected voidDAOMunicipalitySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.materials.bl.goodsgroup.data
Methods in overit.geocallapp.wfm.materials.bl.goodsgroup.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOGoodsGroupSearch.getFilterCriterion(CommandContext cc) protected voidDAOGoodsGroupSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.materials.bl.item.data
Methods in overit.geocallapp.wfm.materials.bl.item.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMaterialItemSearch.getFilterCriterion(CommandContext cc) protected voidDAOMaterialItemSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.materials.bl.managementtype.data
Methods in overit.geocallapp.wfm.materials.bl.managementtype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMaterialManagementTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOMaterialManagementTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.materials.bl.material.data
Methods in overit.geocallapp.wfm.materials.bl.material.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMaterialSearch.getFilterCriterion(CommandContext cc) protected voidDAOMaterialSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.materials.bl.material.history.data
Methods in overit.geocallapp.wfm.materials.bl.material.history.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMaterialHistorySearch.getFilterCriterion(CommandContext cc) protected voidDAOMaterialHistorySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.materials.bl.materialclass.data
Methods in overit.geocallapp.wfm.materials.bl.materialclass.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMaterialClassSearch.getFilterCriterion(CommandContext cc) protected voidDAOMaterialClassSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.materials.bl.type.data
Methods in overit.geocallapp.wfm.materials.bl.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMaterialTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOMaterialTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.measuringelements.bl.counterdirection.data
Methods in overit.geocallapp.wfm.measuringelements.bl.counterdirection.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOCounterDirectionSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.measuringelements.bl.measuringelement.data
Methods in overit.geocallapp.wfm.measuringelements.bl.measuringelement.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMeasuringElement.defineParams(CommandContext cc, PoolKit pk) protected CriterionDAOMeasuringElementSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeasuringElementSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.measuringelements.bl.measuringelement.measure.data
Methods in overit.geocallapp.wfm.measuringelements.bl.measuringelement.measure.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOMeasureSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeasureSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.measuringelements.bl.measuringelement.measure.mode.data
Methods in overit.geocallapp.wfm.measuringelements.bl.measuringelement.measure.mode.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.measuringelements.bl.measuringelement.measure.status.data
Methods in overit.geocallapp.wfm.measuringelements.bl.measuringelement.measure.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeasureStatus.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.measuringelements.bl.measuringelement.status.data
Methods in overit.geocallapp.wfm.measuringelements.bl.measuringelement.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeasuringElementStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.bl.errorlog.data
Methods in overit.geocallapp.wfm.mobile.core.bl.errorlog.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOMobileErrorLogSearch.getFilterCriterion(CommandContext cc) protected voidDAOMobileErrorLogSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.bl.intervention.toaccept.data
Methods in overit.geocallapp.wfm.mobile.core.bl.intervention.toaccept.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMobileInterventionToAcceptSearch.defineParams(CommandContext cc, PoolKit pk) protected voidDAOMobileInterventionToAcceptSearch.defineSql(CommandContext cc, PoolKit pk) protected CriterionDAOMobileInterventionToAcceptSearch.getFilterCriterion(CommandContext cc) String[]DAOMobileInterventionToAcceptSearch.getStar(CommandContext cc) DAOMobileInterventionToAcceptSearch.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.bl.multistage.data
Methods in overit.geocallapp.wfm.mobile.core.bl.multistage.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOMobileMultistageGroupOperationDependentOperation.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.bl.notification.data
Methods in overit.geocallapp.wfm.mobile.core.bl.notification.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.bl.technicalobject.attachment.data
Methods in overit.geocallapp.wfm.mobile.core.bl.technicalobject.attachment.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMobileTechnicalObjectAttachmentsSearch.defineParams(CommandContext cc, PoolKit pk) protected StringDAOMobileTechnicalObjectAttachmentsSearch.getActiveResourceClause(CommandContext cc) protected StringDAOMobileTechnicalObjectAttachmentsSearch.getDirectlyLinkClause(CommandContext cc) DAOMobileTechnicalObjectAttachmentsSearch.getFilterCriterion(CommandContext cc) protected StringDAOMobileTechnicalObjectAttachmentsSearch.getNullMeasureClasue(CommandContext cc) DAOMobileTechnicalObjectAttachmentsSearch.getTable(CommandContext cc) protected voidDAOMobileTechnicalObjectAttachmentsSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.bl.technicalobject.data
Methods in overit.geocallapp.wfm.mobile.core.bl.technicalobject.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMobileTechnicalObjectSearch.defineParams(CommandContext cc, PoolKit pk) protected voidDAOMobileTechnicalObjectSearch.defineValues(CommandContext cc, PoolKit pk) protected StringDAOMobileTechnicalObjectSearch.getCodeOrDescriptionClause(CommandContext cc) DAOMobileTechnicalObjectSearch.getFilterCriterion(CommandContext cc) protected StringDAOMobileTechnicalObjectSearch.getMaxDistanceCondition(CommandContext cc) protected StringDAOMobileTechnicalObjectSearch.getMeasuringElementCondition(CommandContext cc) protected StringDAOMobileTechnicalObjectSearch.getOnlyRelatedAssetsClause(CommandContext cc) protected StringDAOMobileTechnicalObjectSearch.getOperationCenterClause(CommandContext cc) String[]DAOMobileTechnicalObjectSearch.getOrder(CommandContext cc) protected StringDAOMobileTechnicalObjectSearch.getParentClause(CommandContext cc) protected StringDAOMobileTechnicalObjectSearch.getRootClause(CommandContext cc) protected String[]DAOMobileTechnicalObjectSearch.getSelectionFields(CommandContext cc) String[]DAOMobileTechnicalObjectSearch.getStar(CommandContext cc) DAOMobileTechnicalObjectSearch.getTable(CommandContext cc) protected voidDAOMobileTechnicalObjectSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.bl.technicalobject.interventionshistory.data
Methods in overit.geocallapp.wfm.mobile.core.bl.technicalobject.interventionshistory.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMobileInterventionsHistorySearch.defineValues(CommandContext cc, PoolKit pk) DAOMobileInterventionsHistorySearch.getFilterCriterion(CommandContext cc) String[]DAOMobileInterventionsHistorySearch.getOrder(CommandContext cc) protected String[]DAOMobileInterventionsHistorySearch.getSelectionFields(CommandContext cc) String[]DAOMobileInterventionsHistorySearch.getStar(CommandContext cc) DAOMobileInterventionsHistorySearch.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.bl.technicalobject.notification.data
Methods in overit.geocallapp.wfm.mobile.core.bl.technicalobject.notification.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.bl.workorder.data
Methods in overit.geocallapp.wfm.mobile.core.bl.workorder.data with parameters of type CommandContextModifier and TypeMethodDescriptionvoidDAOMobileSchedulableActivities.addDefaultFilterValues(CommandContext cc) voidDAOMobileWorkOrders.addDefaultFilterValues(CommandContext cc) DAOMobileSchedulableActivities.buildSelect(CommandContext cc) DAOMobileWorkOrders.buildSelect(CommandContext cc, PoolKit pk) protected voidDAOMobileWorkOrderSearch.defineSql(CommandContext cc, PoolKit pk) protected voidDAOMobileWorkOrderSearch.defineValues(CommandContext cc, PoolKit pk) protected voidDAOMobileWorkOrderSearch.feedback(CommandContext cc, PoolKit pk, DBStatement dbs) protected CriterionDAOMobileNotification.getFilterCriterion(CommandContext cc) protected CriterionDAOMobileSchedulableActivities.getFilterCriterion(CommandContext cc) protected CriterionDAOMobileWorkOrders.getFilterCriterion(CommandContext cc) protected CriterionDAOMobileWorkOrderSearch.getFilterCriterion(CommandContext cc) protected StringDAOMobileWorkOrders.getOnlyRelatedAssetsClause(Long userId, CommandContext cc) protected StringDAOMobileWorkOrders.getOperationStatuesFilterClause(CommandContext cc) String[]DAOMobileNotification.getOrder(CommandContext cc) protected StringDAOMobileWorkOrderSearch.getSelectByRule(HashGetter rule, CommandContext cc) Deprecated, for removal: This API element is subject to removal in a future version.protected StringDAOMobileWorkOrderSearch.getSelectByRule(HashGetter rule, CommandContext cc, int offset) String[]DAOMobileNotification.getStar(CommandContext cc) DAOMobileNotification.getTable(CommandContext cc) DAOMobileSchedulableActivities.getTable(CommandContext cc) DAOMobileWorkOrders.getTable(CommandContext cc) DAOMobileWorkOrderSearch.getTable(CommandContext cc) protected StringDAOMobileWorkOrders.getUserClause(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.bl.workordercreationrequest.header.state.data
Methods in overit.geocallapp.wfm.mobile.core.bl.workordercreationrequest.header.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOMobileWorkOrderCreationRequestState.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.replicator.datacollection.outcomerule.data
Methods in overit.geocallapp.wfm.mobile.core.replicator.datacollection.outcomerule.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOMobileDataCollectionTemplateStructureOutcomeRule.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.replicator.datacollection.sheet.data
Methods in overit.geocallapp.wfm.mobile.core.replicator.datacollection.sheet.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOMobileDataCollectionSheet.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.replicator.datacollection.template.header.data
Methods in overit.geocallapp.wfm.mobile.core.replicator.datacollection.template.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOMobileDataCollectionTemplateHeader.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.replicator.datacollection.template.release.data
Methods in overit.geocallapp.wfm.mobile.core.replicator.datacollection.template.release.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOMobileDataCollectionTemplateStructureRelease.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.replicator.datacollection.template.structure.data
Methods in overit.geocallapp.wfm.mobile.core.replicator.datacollection.template.structure.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOMobileDataCollectionTemplateStructure.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.replicator.multistage.data
Methods in overit.geocallapp.wfm.mobile.core.replicator.multistage.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOMobileMultistageGroup.getStar(CommandContext cc) String[]DAOMobileMultistageGroupOperation.getStar(CommandContext cc) DAOMobileMultistageGroup.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.replicator.outcome.data
Methods in overit.geocallapp.wfm.mobile.core.replicator.outcome.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOOutcomeReasonEncodedNote.defineParams(CommandContext cc, PoolKit pk) protected CriterionDAOOutcomeReasonEncodedNote.getFilterCriterion(CommandContext cc) String[]DAOOutcomeReasonEncodedNote.getStar(CommandContext cc) protected voidDAOOutcomeReasonEncodedNote.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.mobile.core.replicator.usertypefunction.data
Methods in overit.geocallapp.wfm.mobile.core.replicator.usertypefunction.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOMobileUserTypeFunction.getStar(CommandContext cc) DAOMobileUserTypeFunction.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.mobileforms
Methods in overit.geocallapp.wfm.mobileforms with parameters of type CommandContextModifier and TypeMethodDescriptionstatic StringLegacyCode.getOperationCenterClause(CommandContext cc, String field) static StringLegacyCode.getOperationCenterWithNullClause(CommandContext cc, String field) -
Uses of CommandContext in overit.geocallapp.wfm.mobileforms.bl.optionsgroup.data
Methods in overit.geocallapp.wfm.mobileforms.bl.optionsgroup.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAODataCollectionOptionsGroupSearch.getFilterCriterion(CommandContext cc) Returns the filter criterion. -
Uses of CommandContext in overit.geocallapp.wfm.mobileforms.bl.rule.data
Methods in overit.geocallapp.wfm.mobileforms.bl.rule.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAODataCollectionTemplateWOCreationRuleSearch.getFilterCriterion(CommandContext cc) protected voidDAODataCollectionTemplateWOCreationRuleSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.mobileforms.bl.sheet.data
Methods in overit.geocallapp.wfm.mobileforms.bl.sheet.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAODataCollectionSheet.getFilterCriterion(CommandContext cc) DAODataCollectionSheetSearch.getFilterCriterion(CommandContext cc) protected voidDAODataCollectionSheetSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.mobileforms.bl.template.header.data
Methods in overit.geocallapp.wfm.mobileforms.bl.template.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected booleanDAODataCollectionTemplateHeaderSearch.areThereFiltersOnSet(CommandContext cc, Set<String> filtersFields) protected voidDAODataCollectionTemplateHeaderSearch.defineSql(CommandContext cc, PoolKit pk) protected voidDAODataCollectionTemplateHeaderSearch.defineValues(CommandContext cc, PoolKit pk) protected voidDAODataCollectionWOTemplateHeaderSearch.defineValues(CommandContext cc, PoolKit pk) DAODataCollectionTemplateHeaderSearch.getFilterCriterion(CommandContext cc) protected voidDAODataCollectionTemplateHeaderSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.mobileforms.bl.template.structure.data
Methods in overit.geocallapp.wfm.mobileforms.bl.template.structure.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAODataCollectionTemplateStructureSearch.getFilterCriterion(CommandContext cc) DAODataCollectionTemplateStructureSearch.getTable(CommandContext cc) protected voidDAODataCollectionTemplateStructureSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.mobileforms.bl.template.structure.release.data
Methods in overit.geocallapp.wfm.mobileforms.bl.template.structure.release.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAODataCollectionTemplateStructureReleaseSearch.defineValues(CommandContext cc, PoolKit pk) protected StringDAODataCollectionTemplateStructureReleaseSearch.getCurrentAndFutureValidReleasesClause(CommandContext cc) protected StringDAODataCollectionTemplateStructureReleaseSearch.getCurrentValidReleasesClause(CommandContext cc) DAODataCollectionTemplateStructureReleaseSearch.getFilterCriterion(CommandContext cc) protected voidDAODataCollectionTemplateStructureReleaseSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.mobileforms.bl.template.visibilityrules.header.data
Methods in overit.geocallapp.wfm.mobileforms.bl.template.visibilityrules.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAODCTemplateVisibilityRuleHeaderSearch.getFilterCriterion(CommandContext cc) protected voidDAODCTemplateVisibilityRuleHeaderSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.mobileforms.bl.template.visibilityrules.rows.data
Methods in overit.geocallapp.wfm.mobileforms.bl.template.visibilityrules.rows.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAODCTemplateVisibilityRuleRowSearch.getFilterCriterion(CommandContext cc) protected voidDAODCTemplateVisibilityRuleRowSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.mobileforms.bl.type.data
Methods in overit.geocallapp.wfm.mobileforms.bl.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAODataCollectionTypeSearch.getFilterCriterion(CommandContext cc) Returns the filter criterion. -
Uses of CommandContext in overit.geocallapp.wfm.notifications.notification.da
Methods in overit.geocallapp.wfm.notifications.notification.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAONotifications.defineSql(CommandContext cc, PooledConnection pc) protected CriterionDAONotifications.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.orchestrator.assets.bl.type.data
Methods in overit.geocallapp.wfm.orchestrator.assets.bl.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTechnicalObjectTypeSearch.getFilterCriterion(CommandContext cc) String[]DAOTechnicalObjectTypeSearch.getStar(CommandContext cc) protected voidDAOTechnicalObjectTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.organizationalstructures.bl.operationcenter.address.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.operationcenter.address.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOOperationCenterAddressSearch.getFilterCriterion(CommandContext cc) protected voidDAOOperationCenterAddressSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.organizationalstructures.bl.operationcenter.address.task
Methods in overit.geocallapp.wfm.organizationalstructures.bl.operationcenter.address.task with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidBTOperationCenterMainAddress.update(CommandContext cc, PoolKit poolKit) -
Uses of CommandContext in overit.geocallapp.wfm.organizationalstructures.bl.operationcenter.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.operationcenter.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOOperationCenterSearch.getFilterCriterion(CommandContext cc) protected voidDAOOperationCenterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.organizationalstructures.bl.structure.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.structure.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOStructureSearch.getFilterCriterion(CommandContext cc) protected voidDAOStructureSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.organizationalstructures.bl.structure.validityperiod.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.structure.validityperiod.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOStructureValidityPeriodSearch.defineParams(CommandContext cc, PoolKit pk) protected CriterionDAOStructureValidityPeriodSearch.getFilterCriterion(CommandContext cc) String[]DAOStructureValidityPeriodSearch.getOrder(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.organizationalstructures.bl.workcenter.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.workcenter.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkCenterSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkCenterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.organizationalstructures.bl.zone.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.zone.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOZoneSearch.getFilterCriterion(CommandContext cc) protected voidDAOZoneSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.organizationalstructures.bl.zone.microcluster.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.zone.microcluster.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOAddressMicroClusterZones.getFilterCriterion(CommandContext cc) protected voidDAOAddressMicroClusterZones.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.project.bl.activity.da
Methods in overit.geocallapp.wfm.project.bl.activity.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSearchProjectActivity.defineSql(CommandContext cc, PoolKit pk) protected voidDAOSearchProjectActivity.defineValues(CommandContext cc, PoolKit pk) protected CriterionDAOSearchProjectActivity.getFilterCriterion(CommandContext cc) protected voidDAOSearchProjectActivity.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.project.bl.activity.type.data
Methods in overit.geocallapp.wfm.project.bl.activity.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProjectActivityTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.project.bl.activitydebriefing.da
Methods in overit.geocallapp.wfm.project.bl.activitydebriefing.da with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOSearchProjectActivityDebriefing.getOrder(CommandContext cc) protected voidDAOSearchProjectActivityDebriefing.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.project.bl.activityrelation.da
Methods in overit.geocallapp.wfm.project.bl.activityrelation.da with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAOSearchProjectActivitiesRelations.getOrder(CommandContext cc) DAOSearchProjectActivitiesRelations.getTable(CommandContext cc) protected voidDAOSearchProjectActivitiesRelations.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.project.bl.calendarunit.data
Methods in overit.geocallapp.wfm.project.bl.calendarunit.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOCalendarUnitSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.project.bl.configuration.da
Methods in overit.geocallapp.wfm.project.bl.configuration.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSearchWOTypes.getFilterCriterion(CommandContext cc) DAOSearchProjectHeaderTechnicalObjects.getTable(CommandContext cc) protected voidDAOSearchProjectHeaderTechnicalObjects.validate(CommandContext cc, PoolKit pk) protected voidDAOSearchWOTypes.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.project.bl.diary.da
Methods in overit.geocallapp.wfm.project.bl.diary.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSearchProjectDiary.getFilterCriterion(CommandContext cc) DAOSearchProjectDiary.getTable(CommandContext cc) protected StringDAOSearchProjectDiary.getVisibilityClause(CommandContext cc) protected voidDAOSearchProjectDiary.validate(CommandContext cc, PoolKit pk) protected voidDAOSearchProjectDiaryHistory.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.project.bl.header.da
Methods in overit.geocallapp.wfm.project.bl.header.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOProjectProgressive.defineSql(CommandContext cc, PoolKit pk) protected voidDAOSearchProject.defineValues(CommandContext cc, PoolKit pk) protected CriterionDAOSearchProject.getFilterCriterion(CommandContext cc) protected voidDAOSearchProject.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.project.bl.management.planning.da
Methods in overit.geocallapp.wfm.project.bl.management.planning.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProjectOperations.getFilterCriterion(CommandContext cc) protected CriterionDAOProjectOperationsSlots.getFilterCriterion(CommandContext cc) DAOProjectOperations.getTable(CommandContext cc) protected voidDAOProjectOperations.validate(CommandContext cc, PoolKit pk) protected voidDAOProjectOperationsSlots.validate(CommandContext cc, PoolKit pk) protected voidDAOSchedulingSlotSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.project.bl.profile.da
Methods in overit.geocallapp.wfm.project.bl.profile.da with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSearchProjectProfile.getFilterCriterion(CommandContext cc) protected voidDAOSearchProjectProfile.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.project.bl.type.data
Methods in overit.geocallapp.wfm.project.bl.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProjectTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.projects.bl.activity.data
Methods in overit.geocallapp.wfm.projects.bl.activity.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProjectActivitySearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.projects.bl.activity.status.data
Methods in overit.geocallapp.wfm.projects.bl.activity.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProjectActivityStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOProjectActivityStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.projects.bl.activity.userstatus.data
Methods in overit.geocallapp.wfm.projects.bl.activity.userstatus.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProjectActivityUserStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.projects.bl.activityrelation.type.data
Methods in overit.geocallapp.wfm.projects.bl.activityrelation.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProjectActivityRelationTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.projects.bl.header.data
Methods in overit.geocallapp.wfm.projects.bl.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProjectHeaderSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.projects.bl.profile.data
Methods in overit.geocallapp.wfm.projects.bl.profile.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProjectProfileSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.projects.bl.profile.startdate.data
Methods in overit.geocallapp.wfm.projects.bl.profile.startdate.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProjectActivityStartDateSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.projects.bl.status.data
Methods in overit.geocallapp.wfm.projects.bl.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProjectStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.projects.bl.timerangeconfiguration.data
Methods in overit.geocallapp.wfm.projects.bl.timerangeconfiguration.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTimeRangeConfigurationSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.projects.bl.userstatus.data
Methods in overit.geocallapp.wfm.projects.bl.userstatus.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOProjectUserStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.resources.bl.resource.address.data
Methods in overit.geocallapp.wfm.resources.bl.resource.address.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOResourceAddressSearch.getFilterCriterion(CommandContext cc) protected voidDAOResourceAddressSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.resources.bl.resource.data
Methods in overit.geocallapp.wfm.resources.bl.resource.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOResourceSearch.defineParams(CommandContext cc, PoolKit poolKit) protected voidDAOResource.defineValues(CommandContext cc, PoolKit pk) protected CriterionDAOResourceSearch.getFilterCriterion(CommandContext cc) String[]DAOResourceSearch.getStar(CommandContext cc) protected StringDAOResourceSearch.getValidUsersOnlyClause(CommandContext cc) protected voidDAOResourceSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.resources.bl.resource.management.data
Methods in overit.geocallapp.wfm.resources.bl.resource.management.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOResourceManagementSearch.getFilterCriterion(CommandContext cc) protected voidDAOResourceManagementSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.resources.bl.resource.qualification.data
Methods in overit.geocallapp.wfm.resources.bl.resource.qualification.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOResourceQualificationSearch.getFilterCriterion(CommandContext cc) protected voidDAOResourceQualificationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.resources.bl.resource.skill.data
Methods in overit.geocallapp.wfm.resources.bl.resource.skill.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOResourceSkillSearch.getFilterCriterion(CommandContext cc) protected voidDAOResourceSkillSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.resources.bl.resource.type.data
Methods in overit.geocallapp.wfm.resources.bl.resource.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOResourceTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOResourceTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.activity.result.data
Methods in overit.geocallapp.wfm.roughplanning.bl.activity.result.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAORoughPlanningActivityResultSearch.getFilterCriterion(CommandContext cc) protected voidDAORoughPlanningActivityResultSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.bucket.data
Methods in overit.geocallapp.wfm.roughplanning.bl.bucket.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAORoughPlanningBucketSearch.getFilterCriterion(CommandContext cc) protected voidDAORoughPlanningBucketSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.capacity.data
Methods in overit.geocallapp.wfm.roughplanning.bl.capacity.data with parameters of type CommandContext -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.creationfilter.data
Methods in overit.geocallapp.wfm.roughplanning.bl.creationfilter.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAORoughPlanningCreationFilter.getFilterCriterion(CommandContext cc) protected voidDAORoughPlanningCreationFilterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.data
Methods in overit.geocallapp.wfm.roughplanning.bl.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAORoughPlanningSearch.getFilterCriterion(CommandContext cc) protected voidDAORoughPlanningSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.demand.data
Methods in overit.geocallapp.wfm.roughplanning.bl.demand.data with parameters of type CommandContextModifier and TypeMethodDescriptionString[]DAODemandSummarySearch.getGroup(CommandContext cc) String[]DAODemandSummarySearch.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.demand.detail.data
Methods in overit.geocallapp.wfm.roughplanning.bl.demand.detail.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAODemandSummaryDetailSearch.defineParams(CommandContext cc, PoolKit pk) DAODemandSummaryDetailSearch.getFilterCriterion(CommandContext cc) String[]DAODemandSummaryDetailSearch.getGroup(CommandContext cc) String[]DAODemandSummaryDetailSearch.getOrder(CommandContext cc) String[]DAODemandSummaryDetailSearch.getStar(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.resource.data
Methods in overit.geocallapp.wfm.roughplanning.bl.resource.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAORoughPlanningResourceSearch.getFilterCriterion(CommandContext cc) protected voidDAORoughPlanningResourceSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.resource.result.data
Methods in overit.geocallapp.wfm.roughplanning.bl.resource.result.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAORoughPlanningResourceResultSearch.getFilterCriterion(CommandContext cc) protected voidDAORoughPlanningResourceResultSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.roughplanningbucketmovement.data
Methods in overit.geocallapp.wfm.roughplanning.bl.roughplanningbucketmovement.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAORoughPlanningBucketMovementSearch.getFilterCriterion(CommandContext cc) protected voidDAORoughPlanningBucketMovementSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.roughplanningbucketmovement.state.data
Methods in overit.geocallapp.wfm.roughplanning.bl.roughplanningbucketmovement.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAORoughPlanningBucketMovementState.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.roughplanningordermovement.data
Methods in overit.geocallapp.wfm.roughplanning.bl.roughplanningordermovement.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAORoughPlanningOrderMovementSearch.getFilterCriterion(CommandContext cc) protected voidDAORoughPlanningOrderMovementSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.roughplanning.bl.state.data
Methods in overit.geocallapp.wfm.roughplanning.bl.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAORoughPlanningState.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.agenda.data
Methods in overit.geocallapp.wfm.scheduling.bl.agenda.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAgendaSearch.getFilterCriterion(CommandContext cc) protected voidDAOAgendaSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.agenda.history.data
Methods in overit.geocallapp.wfm.scheduling.bl.agenda.history.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAgendaHistorySearch.getFilterCriterion(CommandContext cc) DAOAgendaHistorySearch.getTable(CommandContext cc) protected voidDAOAgendaHistorySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.agenda.resourceroles.data
Methods in overit.geocallapp.wfm.scheduling.bl.agenda.resourceroles.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAgendaResourceRolesSearch.getFilterCriterion(CommandContext cc) protected voidDAOAgendaResourceRolesSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.agenda.status.data
Methods in overit.geocallapp.wfm.scheduling.bl.agenda.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAgendaStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOAgendaStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.appointment.data
Methods in overit.geocallapp.wfm.scheduling.bl.appointment.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAppointmentSearch.getFilterCriterion(CommandContext cc) protected voidDAOAppointmentSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.appointment.status.data
Methods in overit.geocallapp.wfm.scheduling.bl.appointment.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAppointmentStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOAppointmentStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.clocking.type.data
Methods in overit.geocallapp.wfm.scheduling.bl.clocking.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOClockingTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOClockingTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingConfigurationSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingConfigurationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.positiontype.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.positiontype.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingPositionTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingPositionTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.reprocessingmode.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.reprocessingmode.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingReprocessingModeSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingReprocessingModeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.wosort.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.wosort.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingWOSortSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingWOSortSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.calendar.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.calendar.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingCalendarSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingCalendarSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.history.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.history.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingProcessingSearch.getFilterCriterion(CommandContext cc) protected StringDAOImmediateSchedulingProcessingSearch.getWorkOrderOperationClause(CommandContext cc) protected voidDAOImmediateSchedulingProcessingSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.lastprocessing.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.lastprocessing.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingLastProcessingSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingLastProcessingSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.resource.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.resource.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingResourceProcessingSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingResourceProcessingSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.resourceexclusion.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.resourceexclusion.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingResourceExclusionSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingResourceExclusionSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.resourceexclusion.reason.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.resourceexclusion.reason.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingExclusionReasonSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingExclusionReasonSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.state.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.state.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingStateSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingStateSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.tracking.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.tracking.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingTrackingSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingTrackingSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.workorder.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.workorder.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOImmediateSchedulingWorkOrderSelect.defineSql(CommandContext cc, PoolKit pk) protected voidDAOImmediateSchedulingWorkOrderSelect.defineValues(CommandContext cc, PoolKit pk) DAOImmediateSchedulingWorkOrderSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingWorkOrderSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.workorder.history.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.workorder.history.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingWorkOrderHistorySearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingWorkOrderHistorySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.wostate.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.wostate.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOImmediateSchedulingWOStateSearch.getFilterCriterion(CommandContext cc) protected voidDAOImmediateSchedulingWOStateSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.oss.integrationconfiguration.data
Methods in overit.geocallapp.wfm.scheduling.bl.oss.integrationconfiguration.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOOssIntegrationConfigurationSearch.getFilterCriterion(CommandContext cc) protected voidDAOOssIntegrationConfigurationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.oss.response.data
Methods in overit.geocallapp.wfm.scheduling.bl.oss.response.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOOssResponseLogSearch.getFilterCriterion(CommandContext cc) String[]DAOOssResponseLogSearch.getGroup(CommandContext cc) String[]DAOOssResponseLogSearch.getStar(CommandContext cc) DAOOssResponseLogSearch.getTable(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.planningactionhistory.data
Methods in overit.geocallapp.wfm.scheduling.bl.planningactionhistory.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOPlanningActionHistorySearch.getFilterCriterion(CommandContext cc) protected voidDAOPlanningActionHistorySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.planningactionhistory.type.data
Methods in overit.geocallapp.wfm.scheduling.bl.planningactionhistory.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOPlanningActionHistoryTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.scheduling.cancellation.activitystatus.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.cancellation.activitystatus.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOCancellationActivityStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOCancellationActivityStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.scheduling.cancellation.activitytocancel.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.cancellation.activitytocancel.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOActivityToCancelSearch.getFilterCriterion(CommandContext cc) protected voidDAOActivityToCancelSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.scheduling.cancellation.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.cancellation.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOSchedulingToCancelSearch.getFilterCriterion(CommandContext cc) protected voidDAOSchedulingToCancelSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.scheduling.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOAppointmentScheduling.getFilterCriterion(CommandContext cc) DAOSchedulingSearch.getFilterCriterion(CommandContext cc) protected voidDAOAppointmentScheduling.validate(CommandContext cc, PoolKit pk) protected voidDAOSchedulingSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.scheduling.mode.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.mode.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSchedulingMode.defineParams(CommandContext cc, PoolKit poolKit) protected CriterionDAOSchedulingMode.getFilterCriterion(CommandContext cc) protected CriterionDAOSchedulingModeSearch.getFilterCriterion(CommandContext cc) protected voidDAOSchedulingModeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.scheduling.operationcenter.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.operationcenter.data with parameters of type CommandContextModifier and TypeMethodDescriptionstatic voidDAOOperationCenterSchedulingConfiguration.searchValidation(CommandContext cc) Validates the command type of the currentCommandContext. -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.scheduling.status.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSchedulingStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOSchedulingStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.teamdislocation.data
Methods in overit.geocallapp.wfm.scheduling.bl.teamdislocation.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTeamDislocationSearch.getFilterCriterion(CommandContext cc) protected voidDAOTeamDislocationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.teamlocation.data
Methods in overit.geocallapp.wfm.scheduling.bl.teamlocation.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTeamLocationSearch.getFilterCriterion(CommandContext cc) protected voidDAOTeamLocationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.bl.transfertimetype.data
Methods in overit.geocallapp.wfm.scheduling.bl.transfertimetype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTransferTimeTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.scheduling.timeslot.bl.data
Methods in overit.geocallapp.wfm.scheduling.timeslot.bl.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSchedulingTimeslot.defineStatement(CommandContext cc, PoolKit pk, DBStatement dbs) protected voidDAOSchedulingTimeslot.defineValues(CommandContext cc, PoolKit pk) protected StringDAOSchedulingTimeslot.getDateClause(CommandContext commandContext) protected CriterionDAOSchedulingTimeslot.getFilterCriterion(CommandContext cc) DAOSchedulingTimeslotSearch.getFilterCriterion(CommandContext cc) protected CriterionDAOSchedulingTimeslot.getValuesCriterion(CommandContext cc) protected voidDAOSchedulingTimeslotSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.skills.bl.configuration.activity.data
Methods in overit.geocallapp.wfm.skills.bl.configuration.activity.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOActivitySkillConfigurationSearch.getFilterCriterion(CommandContext cc) protected StringDAOActivitySkillConfigurationSearch.getOperationCenterClause(CommandContext cc) protected StringDAOActivitySkillConfigurationSearch.getTeamCardinalityClause(CommandContext cc) protected voidDAOActivitySkillConfigurationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.skills.bl.configuration.data
Methods in overit.geocallapp.wfm.skills.bl.configuration.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSkillConfigurationSearch.getFilterCriterion(CommandContext cc) protected voidDAOSkillConfigurationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.skills.bl.configuration.division.data
Methods in overit.geocallapp.wfm.skills.bl.configuration.division.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSkillConfigurationDivisionSearch.getFilterCriterion(CommandContext cc) protected voidDAOSkillConfigurationDivisionSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.skills.bl.configuration.skill.data
Methods in overit.geocallapp.wfm.skills.bl.configuration.skill.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOSkillConfigurationSkillSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.skills.bl.division.data
Methods in overit.geocallapp.wfm.skills.bl.division.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSkillDivisionSearch.getFilterCriterion(CommandContext cc) protected voidDAOSkillDivisionSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.skills.bl.division.skill.data
Methods in overit.geocallapp.wfm.skills.bl.division.skill.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSkillDivisionGroupedRelationSearch.getFilterCriterion(CommandContext cc) protected CriterionDAOSkillDivisionSkillSearch.getFilterCriterion(CommandContext cc) String[]DAOSkillDivisionGroupedRelationSearch.getStar(CommandContext cc) protected voidDAOSkillDivisionGroupedRelationSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOSkillDivisionSkillSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.skills.bl.level.data
Methods in overit.geocallapp.wfm.skills.bl.level.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSkillLevelSearch.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.skills.bl.overrideconfiguration.data
Methods in overit.geocallapp.wfm.skills.bl.overrideconfiguration.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOSkillOverrideConfigurationSearch.getFilterCriterion(CommandContext cc) protected voidDAOSkillOverrideConfigurationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.skills.bl.overrideconfiguration.skill.data
Methods in overit.geocallapp.wfm.skills.bl.overrideconfiguration.skill.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOSkillOverrideConfigurationSkillSearch.getFilterCriterion(CommandContext cc) protected voidDAOSkillOverrideConfigurationSkillSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.skills.bl.qualification.data
Methods in overit.geocallapp.wfm.skills.bl.qualification.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOQualificationSearch.getFilterCriterion(CommandContext cc) protected voidDAOQualificationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.skills.bl.skill.data
Methods in overit.geocallapp.wfm.skills.bl.skill.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSkillSearch.getFilterCriterion(CommandContext cc) protected voidDAOSkillSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.skills.bl.skill.qualification.data
Methods in overit.geocallapp.wfm.skills.bl.skill.qualification.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOSkillQualificationSearch.getFilterCriterion(CommandContext cc) protected voidDAOSkillQualificationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.systemsettings.bl.calendar.holiday.data
Methods in overit.geocallapp.wfm.systemsettings.bl.calendar.holiday.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected StringDAOHolidaySearch.getCompanyCalendar(CommandContext cc) DAOHolidaySearch.getFilterCriterion(CommandContext cc) protected voidDAOHolidaySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.systemsettings.bl.datatype.data
Methods in overit.geocallapp.wfm.systemsettings.bl.datatype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAODataType.getFilterCriterion(CommandContext cc) protected voidDAODataType.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.systemsettings.bl.externalsystem.data
Methods in overit.geocallapp.wfm.systemsettings.bl.externalsystem.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOExternalSystemSearch.getFilterCriterion(CommandContext cc) protected voidDAOExternalSystemSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.systemsettings.bl.measurementunit.data
Methods in overit.geocallapp.wfm.systemsettings.bl.measurementunit.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOMeasurementUnitSearch.getFilterCriterion(CommandContext cc) protected voidDAOMeasurementUnitSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.teams.bl.team.cardinality.data
Methods in overit.geocallapp.wfm.teams.bl.team.cardinality.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTeamCardinality.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.teams.bl.team.data
Methods in overit.geocallapp.wfm.teams.bl.team.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOTeamSearch.getFilterCriterion(CommandContext cc) protected voidDAOTeamSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.teams.bl.team.formation.skillconfiguration.data
Methods in overit.geocallapp.wfm.teams.bl.team.formation.skillconfiguration.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOFormationSkillConfigurationSearch.getFilterCriterion(CommandContext cc) protected voidDAOFormationSkillConfigurationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.teams.bl.team.formation.skilldivision.data
Methods in overit.geocallapp.wfm.teams.bl.team.formation.skilldivision.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOFormationSkillDivisionSearch.getFilterCriterion(CommandContext cc) protected voidDAOFormationSkillDivisionSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.teams.bl.team.level.data
Methods in overit.geocallapp.wfm.teams.bl.team.level.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTeamLevelSearch.getFilterCriterion(CommandContext cc) protected voidDAOTeamLevelSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.teams.bl.team.member.data
Methods in overit.geocallapp.wfm.teams.bl.team.member.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTeamMemberSearch.getFilterCriterion(CommandContext cc) protected voidDAOTeamMemberSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.teams.bl.team.shift.data
Methods in overit.geocallapp.wfm.teams.bl.team.shift.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTeamShiftSearch.getFilterCriterion(CommandContext cc) protected voidDAOTeamShiftSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.teams.bl.team.shift.resource.data
Methods in overit.geocallapp.wfm.teams.bl.team.shift.resource.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTeamShiftExtendedSearch.getFilterCriterion(CommandContext cc) protected CriterionDAOTeamShiftResourceSearch.getFilterCriterion(CommandContext cc) DAOTeamShiftExtendedSearch.getTable(CommandContext cc) protected voidDAOTeamShiftExtendedSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOTeamShiftResourceSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.teams.bl.team.type.data
Methods in overit.geocallapp.wfm.teams.bl.team.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOTeamTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOTeamTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.timesheets.bl.clocking.data
Methods in overit.geocallapp.wfm.timesheets.bl.clocking.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOClockingSearch.getFilterCriterion(CommandContext cc) protected voidDAOClockingSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.vehicles.bl.data
Methods in overit.geocallapp.wfm.vehicles.bl.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOVehicle.getFilterCriterion(CommandContext cc) DAOVehicleSearch.getFilterCriterion(CommandContext cc) protected voidDAOVehicleSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.activity.data
Methods in overit.geocallapp.wfm.workorders.bl.activity.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOActivity.defineParams(CommandContext cc, PoolKit poolKit) DAOActivitySearch.getFilterCriterion(CommandContext cc) protected voidDAOActivitySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.activity.skillconfiguration.data
Methods in overit.geocallapp.wfm.workorders.bl.activity.skillconfiguration.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOActivitySkillConfigurationSearch.getFilterCriterion(CommandContext cc) protected StringDAOActivitySkillConfigurationSearch.getOperationCenterClause(CommandContext cc) protected StringDAOActivitySkillConfigurationSearch.getTeamCardinalityClause(CommandContext cc) protected voidDAOActivitySkillConfigurationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.cancelsuspendreason.data
Methods in overit.geocallapp.wfm.workorders.bl.cancelsuspendreason.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOCancelSuspendReasonSearch.getFilterCriterion(CommandContext cc) protected voidDAOCancelSuspendReasonSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.header.data
Methods in overit.geocallapp.wfm.workorders.bl.header.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkOrderHeader.getFilterCriterion(CommandContext cc) DAOWorkOrderHeaderSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderHeaderSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.meter.data
Methods in overit.geocallapp.wfm.workorders.bl.meter.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderMeterSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderMeterSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.note.data
Methods in overit.geocallapp.wfm.workorders.bl.note.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderNoteSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderNoteSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.operation.data
Methods in overit.geocallapp.wfm.workorders.bl.operation.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkOrderOperationSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderOperationSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.operation.operationRequirement.data
Methods in overit.geocallapp.wfm.workorders.bl.operation.operationRequirement.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOOperationRequirementSearch.getFilterCriterion(CommandContext cc) protected voidDAOOperationRequirementSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.operation.operationRequirement.migration.data
Methods in overit.geocallapp.wfm.workorders.bl.operation.operationRequirement.migration.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOOperationExtractRequirements.defineParams(CommandContext cc, PoolKit poolKit) protected CriterionDAOOperationExtractRequirements.getFilterCriterion(CommandContext cc) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.operation.status.data
Methods in overit.geocallapp.wfm.workorders.bl.operation.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderOperationStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderOperationStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.operation.type.data
Methods in overit.geocallapp.wfm.workorders.bl.operation.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderOperationTypeSearch.getFilterCriterion(CommandContext cc) String[]DAOWorkOrderOperationTypeSearch.getStar(CommandContext cc) protected voidDAOWorkOrderOperationTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.operationtypecategory.data
Methods in overit.geocallapp.wfm.workorders.bl.operationtypecategory.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkOrderOperationTypeCategorySearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderOperationTypeCategorySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.origin.data
Methods in overit.geocallapp.wfm.workorders.bl.origin.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkOrderOriginSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderOriginSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.requesttype.data
Methods in overit.geocallapp.wfm.workorders.bl.requesttype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAORequestTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAORequestTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.servicetype.data
Methods in overit.geocallapp.wfm.workorders.bl.servicetype.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOServiceTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOServiceTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.status.data
Methods in overit.geocallapp.wfm.workorders.bl.status.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderStatusSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderStatusSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.status.user.type.data
Methods in overit.geocallapp.wfm.workorders.bl.status.user.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderEditableStatusForUserTypeSearch.getFilterCriterion(CommandContext cc) protected CriterionDAOWorkOrderStatusUserTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderEditableStatusForUserTypeSearch.validate(CommandContext cc, PoolKit pk) protected voidDAOWorkOrderStatusUserTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.type.activity.data
Methods in overit.geocallapp.wfm.workorders.bl.type.activity.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkOrderOperationTypeActivitySearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderOperationTypeActivitySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.type.data
Methods in overit.geocallapp.wfm.workorders.bl.type.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderTypeSearch.getFilterCriterion(CommandContext cc) String[]DAOWorkOrderTypeSearch.getStar(CommandContext cc) protected voidDAOWorkOrderTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.type.eventmanager.data
Methods in overit.geocallapp.wfm.workorders.bl.type.eventmanager.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOEventManagerConfWoTypeSearch.getFilterCriterion(CommandContext cc) protected voidDAOEventManagerConfWoTypeSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.type.structure.data
Methods in overit.geocallapp.wfm.workorders.bl.type.structure.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderTypeStructureSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderTypeStructureSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.urgency.data
Methods in overit.geocallapp.wfm.workorders.bl.urgency.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderUrgencySearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkOrderUrgencySearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.workcycle.data
Methods in overit.geocallapp.wfm.workorders.bl.workcycle.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkCycleSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkCycleSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.workcycle.rule.data
Methods in overit.geocallapp.wfm.workorders.bl.workcycle.rule.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkCycleRuleSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkCycleRuleSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.workcycle.structure.data
Methods in overit.geocallapp.wfm.workorders.bl.workcycle.structure.data with parameters of type CommandContextModifier and TypeMethodDescriptionDAOWorkCycleStructureSearch.getFilterCriterion(CommandContext cc) protected voidDAOWorkCycleStructureSearch.validate(CommandContext cc, PoolKit pk) -
Uses of CommandContext in overit.geocallapp.wfm.workorders.bl.workload.data
Methods in overit.geocallapp.wfm.workorders.bl.workload.data with parameters of type CommandContextModifier and TypeMethodDescriptionprotected voidDAOWorkLoad.addSelectFields(ArrayList<String> fields, CommandContext cc) protected voidDAOWorkLoadDetail.addSelectFields(ArrayList<String> fields, CommandContext cc) protected booleanDAOWorkLoad.areAdditionalScheduledFiltersRequested(CommandContext cc) protected voidDAOWorkLoad.defineParams(CommandContext cc, PoolKit poolKit) DAOWorkLoad.getFilterCriterion(CommandContext cc) String[]DAOWorkLoad.getGroup(CommandContext cc) String[]DAOWorkLoadDetail.getGroup(CommandContext cc) String[]DAOWorkLoad.getOrder(CommandContext cc) String[]DAOWorkLoad.getStar(CommandContext cc) DAOWorkLoad.getTable(CommandContext cc) DAOWorkLoadDetail.getTable(CommandContext cc) protected booleanDAOWorkLoad.isWorkLoadOperationTypeUrgencyGrouping(CommandContext cc) protected voidDAOWorkLoad.validate(CommandContext cc, PoolKit pk)