Rename Get/Set/Rem StoredStatQueue -> Get/Set/Rem StoredStatQueueDrv

This commit is contained in:
TeoV
2017-10-31 14:11:57 +02:00
committed by DanB
parent 756f8a5b5c
commit 8fe85096e7
6 changed files with 19 additions and 19 deletions

View File

@@ -116,9 +116,9 @@ type DataDB interface {
GetStatQueueProfileDrv(tenant string, ID string) (sq *StatQueueProfile, err error)
SetStatQueueProfileDrv(sq *StatQueueProfile) (err error)
RemStatQueueProfileDrv(tenant, id string) (err error)
GetStoredStatQueue(tenant, id string) (sq *StoredStatQueue, err error)
SetStoredStatQueue(sq *StoredStatQueue) (err error)
RemStoredStatQueue(tenant, id string) (err error)
GetStoredStatQueueDrv(tenant, id string) (sq *StoredStatQueue, err error)
SetStoredStatQueueDrv(sq *StoredStatQueue) (err error)
RemStoredStatQueueDrv(tenant, id string) (err error)
GetThresholdProfileDrv(tenant string, ID string) (tp *ThresholdProfile, err error)
SetThresholdProfileDrv(tp *ThresholdProfile) (err error)
RemThresholdProfileDrv(tenant, id string) (err error)