Delete Policy Type Api
[ric-plt/a1.git] / a1-go / pkg / resthooks / types.go
index 778cb17..4765e29 100644 (file)
 */
 package resthooks
 
+import (
+       "gerrit.o-ran-sc.org/r/ric-plt/a1/pkg/rmr"
+)
+
 type Resthook struct {
-       db iSdl
+       db             iSdl
+       iRmrSenderInst rmr.IRmrSender
 }
-
 type iSdl interface {
        GetAll(string) ([]string, error)
+       SetIfNotExists(ns string, key string, data interface{}) (bool, error)
+       Get(string, []string) (map[string]interface{}, error)
+       SetIf(ns string, key string, oldData, newData interface{}) (bool, error)
+       Set(ns string, pairs ...interface{}) error
+       Remove(ns string, keys []string) error
+}
+
+type iRMRClient interface {
+       SendMsg(params *xapp.RMRParams) bool
 }