J release: Release container Image
[ric-plt/appmgr.git] / pkg / resthooks / types.go
index f2af972..881c0e3 100755 (executable)
@@ -48,8 +48,9 @@ type SubscriptionNotification struct {
 }
 
 type iSdl interface {
-       Set(pairs ...interface{}) error
-       Get(keys []string) (map[string]interface{}, error)
-       GetAll() ([]string, error)
-       RemoveAll() error
+       Set(ns string, pairs ...interface{}) error
+       Get(ns string, keys []string) (map[string]interface{}, error)
+       GetAll(ns string) ([]string, error)
+       RemoveAll(ns string) error
+       Remove(ns string, keys []string) error
 }