Uses of Class
org.neotropic.kuwaiba.modules.commercial.sync.model.PollResult
-
-
Uses of PollResult in org.neotropic.kuwaiba.modules.commercial.sync
Methods in org.neotropic.kuwaiba.modules.commercial.sync that return types with arguments of type PollResult Modifier and Type Method Description CompletableFuture<PollResult>
JobService. createAsyncFetchJob(AbstractSyncProvider syncProvider, SyncDataSourceConfiguration dataSourceConfiguration)
Async thread to fetch data using a data source configurationMethods in org.neotropic.kuwaiba.modules.commercial.sync with parameters of type PollResult Modifier and Type Method Description CompletableFuture<List<SyncResult>>
JobService. createAsyncActionsJob(PollResult pollResult, AbstractSyncProvider syncProvider, int totalElements, int currentElement)
Asynchronous thread to obtain the results of the previous data collection process. -
Uses of PollResult in org.neotropic.kuwaiba.modules.commercial.sync.components
Constructors in org.neotropic.kuwaiba.modules.commercial.sync.components with parameters of type PollResult Constructor Description AsyncAnalizeDataJob(PollResult pollResult, AbstractSyncProvider syncProvider, LoggingService log)
-
Uses of PollResult in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.bgp
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.bgp that return PollResult Modifier and Type Method Description PollResult
BgpSyncProvider. fetchData(SyncDataSourceConfiguration dataSourceConfiguration)
PollResult
BgpSyncProvider. mappedPoll(SynchronizationGroup syncGroup)
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.bgp with parameters of type PollResult Modifier and Type Method Description List<SyncResult>
BgpSyncProvider. automatedSync(PollResult pollResult)
List<SyncFinding>
BgpSyncProvider. supervisedSync(PollResult pollResult)
-
Uses of PollResult in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.ip
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.ip that return PollResult Modifier and Type Method Description PollResult
IPAddressesSyncProvider. fetchData(SyncDataSourceConfiguration dataSourceConfiguration)
PollResult
IPAddressesSyncProvider. mappedPoll(SynchronizationGroup syncGroup)
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.ip with parameters of type PollResult Modifier and Type Method Description List<SyncResult>
IPAddressesSyncProvider. automatedSync(PollResult pollResult)
List<SyncFinding>
IPAddressesSyncProvider. supervisedSync(PollResult pollResult)
-
Uses of PollResult in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.reference
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.reference that return PollResult Modifier and Type Method Description PollResult
ReferenceSnmpSyncProvider. fetchData(SyncDataSourceConfiguration dataSourceConfiguration)
PollResult
ReferenceSnmpSyncProvider. mappedPoll(SynchronizationGroup syncGroup)
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.reference with parameters of type PollResult Modifier and Type Method Description List<SyncResult>
ReferenceSnmpSyncProvider. automatedSync(PollResult pollResult)
List<SyncFinding>
ReferenceSnmpSyncProvider. supervisedSync(PollResult pollResult)
-
Uses of PollResult in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.vlan
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.vlan that return PollResult Modifier and Type Method Description PollResult
SnmpCiscoVlansSyncProvider. fetchData(SyncDataSourceConfiguration dataSourceConfiguration)
PollResult
SnmpCiscoVlansSyncProvider. mappedPoll(SynchronizationGroup syncGroup)
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.snmp.vlan with parameters of type PollResult Modifier and Type Method Description List<SyncResult>
SnmpCiscoVlansSyncProvider. automatedSync(PollResult pollResult)
List<SyncFinding>
SnmpCiscoVlansSyncProvider. supervisedSync(PollResult pollResult)
-
Uses of PollResult in org.neotropic.kuwaiba.modules.commercial.sync.connectors.ssh.bdi
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.ssh.bdi that return PollResult Modifier and Type Method Description PollResult
BridgeDomainSyncProvider. fetchData(SyncDataSourceConfiguration dataSourceConfiguration)
PollResult
DumbSyncProvider. fetchData(SyncDataSourceConfiguration dataSourceConfiguration)
PollResult
BridgeDomainSyncProvider. mappedPoll(SynchronizationGroup syncGroup)
PollResult
DumbSyncProvider. mappedPoll(SynchronizationGroup syncGroup)
Methods in org.neotropic.kuwaiba.modules.commercial.sync.connectors.ssh.bdi with parameters of type PollResult Modifier and Type Method Description List<SyncResult>
BridgeDomainSyncProvider. automatedSync(PollResult pollResult)
List<SyncResult>
DumbSyncProvider. automatedSync(PollResult pollResult)
List<SyncFinding>
BridgeDomainSyncProvider. supervisedSync(PollResult pollResult)
List<SyncFinding>
DumbSyncProvider. supervisedSync(PollResult pollResult)
-
Uses of PollResult in org.neotropic.kuwaiba.modules.commercial.sync.model
Methods in org.neotropic.kuwaiba.modules.commercial.sync.model that return PollResult Modifier and Type Method Description 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).abstract PollResult
AbstractSyncProvider. mappedPoll(SynchronizationGroup syncGroup)
Some synchronization processes are related to a specific inventory object (for example when syncing the hardware of a given device).Methods in org.neotropic.kuwaiba.modules.commercial.sync.model with parameters of type PollResult Modifier and Type Method Description abstract List<SyncResult>
AbstractSyncProvider. automatedSync(PollResult pollResult)
Implement this method if the supervised synchronization process will be associated to an object in the inventory, for example, you will retrieve the hardware information about a network element and find what has changed overnight.void
PollResult. merge(PollResult other)
abstract List<SyncFinding>
AbstractSyncProvider. supervisedSync(PollResult pollResult)
Implement this method if the supervised synchronization process will be associated to an object in the inventory, for example, you will retrieve the hardware information about a network element and find what has changed overnight.
-