VOL-4444 API for VoipSystemProfile and VoipUserProfile

Change-Id: Ib2a77875bff7f405763c16314811c8b2a9d2fcfc
diff --git a/rw_core/core/device/manager_nbi.go b/rw_core/core/device/manager_nbi.go
index 08062bd..b978823 100644
--- a/rw_core/core/device/manager_nbi.go
+++ b/rw_core/core/device/manager_nbi.go
@@ -26,6 +26,8 @@
 	"github.com/opencord/voltha-protos/v5/go/extension"
 	"github.com/opencord/voltha-protos/v5/go/omci"
 	ofp "github.com/opencord/voltha-protos/v5/go/openflow_13"
+	"github.com/opencord/voltha-protos/v5/go/voip_system_profile"
+	"github.com/opencord/voltha-protos/v5/go/voip_user_profile"
 	"github.com/opencord/voltha-protos/v5/go/voltha"
 	"google.golang.org/grpc/codes"
 	"google.golang.org/grpc/status"
@@ -904,3 +906,19 @@
 	}
 	return &common.OperationResp{Code: common.OperationResp_OPERATION_SUCCESS}, nil
 }
+
+func (dMgr *Manager) PutVoipUserProfile(ctx context.Context, voipUserProfileRequest *voip_user_profile.VoipUserProfileRequest) (*empty.Empty, error) {
+	return nil, status.Error(codes.Unimplemented, "put-voip-user-profile-not-implemented")
+}
+
+func (dMgr *Manager) DeleteVoipUserProfile(ctx context.Context, key *common.Key) (*empty.Empty, error) {
+	return nil, status.Error(codes.Unimplemented, "delete-voip-user-profile-not-implemented")
+}
+
+func (dMgr *Manager) PutVoipSystemProfile(ctx context.Context, voipSystemProfileRequest *voip_system_profile.VoipSystemProfileRequest) (*empty.Empty, error) {
+	return nil, status.Error(codes.Unimplemented, "put-voip-system-profile-not-implemented")
+}
+
+func (dMgr *Manager) DeleteVoipSystemProfile(ctx context.Context, key *common.Key) (*empty.Empty, error) {
+	return nil, status.Error(codes.Unimplemented, "delete-voip-system-profile-not-implemented")
+}