Squash-merging e2ap-v2.0 branch
[ric-plt/e2mgr.git] / E2Manager / models / get_nodeb_id_list_response.go
index dfafab5..7ed83aa 100644 (file)
@@ -36,13 +36,13 @@ func NewGetNodebIdListResponse(nodebIdList []*entities.NbIdentity) *GetNodebIdLi
        }
 }
 
-func (response *GetNodebIdListResponse) Marshal() (string, error) {
+func (response *GetNodebIdListResponse) Marshal() ([]byte, error) {
        pmList := utils.ConvertNodebIdListToProtoMessageList(response.nodebIdList)
        result, err := utils.MarshalProtoMessageListToJsonArray(pmList)
 
        if err != nil {
-               return "", e2managererrors.NewInternalError();
+               return nil, e2managererrors.NewInternalError();
        }
 
-       return result, nil
+       return []byte(result), nil
 }