Uses of Class
org.neotropic.kuwaiba.modules.commercial.sync.model.SyncDataSourceConfiguration
-
-
Uses of SyncDataSourceConfiguration in org.neotropic.kuwaiba.modules.commercial.sync
Methods in org.neotropic.kuwaiba.modules.commercial.sync that return SyncDataSourceConfiguration Modifier and Type Method Description static SyncDataSourceConfiguration
PersistenceUtil. createSyncDataSourceConfigFromNode(org.neo4j.graphdb.Node syncDataSourceConfigNode)
Converts a node to a SyncDataSourceConfiguration objectSyncDataSourceConfiguration
SynchronizationService. getSyncDataSourceConfiguration(String objectId)
Gets a data source configuration of the object (there is only one data source configuration per object)SyncDataSourceConfiguration
SynchronizationService. getSyncDataSourceConfigurationById(long syncDatasourceId)
Gets a synchronization data source configuration receiving its id as search criteria.Methods in org.neotropic.kuwaiba.modules.commercial.sync that return types with arguments of type SyncDataSourceConfiguration Modifier and Type Method Description List<SyncDataSourceConfiguration>
SynchronizationService. getSyncDataSourceConfigurations(long syncGroupId)
Gets the data source configurations associated to a sync group.List<SyncDataSourceConfiguration>
SynchronizationService. getSyncDataSrc(HashMap<String,String> filters, int offset, int limit)
Gets a data source configuration of the objectList<SyncDataSourceConfiguration>
SynchronizationService. getSyncDataSrcByBussinesObject(String objectId, HashMap<String,String> filters, int offset, int limit)
Gets a data source configuration of the objectList<SyncDataSourceConfiguration>
SynchronizationService. getSyncDataSrcBySyncGroupId(long syncGroupId, HashMap<String,String> filters, int offset, int limit)
Gets the data source configurations associated to a sync group.Methods in org.neotropic.kuwaiba.modules.commercial.sync with parameters of type SyncDataSourceConfiguration Modifier and Type Method Description CompletableFuture<PollResult>
JobService. createAsyncFetchJob(AbstractSyncProvider syncProvider, SyncDataSourceConfiguration dataSourceConfiguration)
Async thread to fetch data using a data source configurationvoid
SynchronizationService. saveDataSource(SyncDataSourceConfiguration syncDataSourceConfiguration)
Method parameters in org.neotropic.kuwaiba.modules.commercial.sync with type arguments of type SyncDataSourceConfiguration Modifier and Type Method Description CompletableFuture<List<SyncResult>>
JobService. createJob(AbstractSyncProvider syncProvider, List<SyncDataSourceConfiguration> datasources)
Create a thread to execute a result capture to be sent to the user in a dialog. -
Uses of SyncDataSourceConfiguration in org.neotropic.kuwaiba.modules.commercial.sync.components
Methods in org.neotropic.kuwaiba.modules.commercial.sync.components with parameters of type SyncDataSourceConfiguration Modifier and Type Method Description static List<AbstractProperty>
SyncDataSourceConfigurationPropertySheet. propertiesFromSyncDataSourceConfiguration(SyncDataSourceConfiguration syncDataSourceConfiguration, TranslationService ts, BusinessEntityManager bem)
Display sync data source configuration properties; used in sync frameworkConstructors in org.neotropic.kuwaiba.modules.commercial.sync.components with parameters of type SyncDataSourceConfiguration Constructor Description AsyncFetchDataJob(AbstractSyncProvider syncProvider, SyncDataSourceConfiguration dataSourceConfiguration, LoggingService log)
DataSourceComponent(SyncDataSourceConfiguration dataSource)
-
Uses of SyncDataSourceConfiguration in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.bgp
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.bgp with parameters of type SyncDataSourceConfiguration Modifier and Type Method Description PollResult
BgpSyncProvider. fetchData(SyncDataSourceConfiguration dataSourceConfiguration)
-
Uses of SyncDataSourceConfiguration in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.ip
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.ip with parameters of type SyncDataSourceConfiguration Modifier and Type Method Description PollResult
IPAddressesSyncProvider. fetchData(SyncDataSourceConfiguration dataSourceConfiguration)
-
Uses of SyncDataSourceConfiguration in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.reference
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.reference with parameters of type SyncDataSourceConfiguration Modifier and Type Method Description PollResult
ReferenceSnmpSyncProvider. fetchData(SyncDataSourceConfiguration dataSourceConfiguration)
-
Uses of SyncDataSourceConfiguration in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.vlan
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.vlan with parameters of type SyncDataSourceConfiguration Modifier and Type Method Description PollResult
SnmpCiscoVlansSyncProvider. fetchData(SyncDataSourceConfiguration dataSourceConfiguration)
-
Uses of SyncDataSourceConfiguration in org.neotropic.kuwaiba.modules.commercial.sync.connectors.ssh.bdi
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.ssh.bdi with parameters of type SyncDataSourceConfiguration Modifier and Type Method Description PollResult
BridgeDomainSyncProvider. fetchData(SyncDataSourceConfiguration dataSourceConfiguration)
PollResult
DumbSyncProvider. fetchData(SyncDataSourceConfiguration dataSourceConfiguration)
-
Uses of SyncDataSourceConfiguration in org.neotropic.kuwaiba.modules.commercial.sync.model
Methods in org.neotropic.kuwaiba.modules.commercial.sync.model that return types with arguments of type SyncDataSourceConfiguration Modifier and Type Method Description HashMap<SyncDataSourceConfiguration,List<Exception>>
PollResult. getExceptions()
HashMap<SyncDataSourceConfiguration,List<AbstractDataEntity>>
PollResult. getResult()
Methods in org.neotropic.kuwaiba.modules.commercial.sync.model with parameters of type SyncDataSourceConfiguration Modifier and Type Method Description void
SynchronizationGroup. addSyncDataSource(SyncDataSourceConfiguration dataSource)
abstract PollResult
AbstractSyncProvider. fetchData(SyncDataSourceConfiguration syncDataSrc)
Some synchronization processes are related to a specific inventory object (for example when syncing the hardware of a given device).List<Exception>
PollResult. getSyncDataSourceConfigurationExceptions(SyncDataSourceConfiguration object)
void
SynchronizationGroup. removeSyncDataSource(SyncDataSourceConfiguration dataSource)
Constructor parameters in org.neotropic.kuwaiba.modules.commercial.sync.model with type arguments of type SyncDataSourceConfiguration Constructor Description SynchronizationGroup(long id, String name, String description, List<SyncDataSourceConfiguration> syncDataSourceConfigurations)
SynchronizationGroup(long id, String name, List<SyncDataSourceConfiguration> syncDataSourceConfigurations)
-