Copy latest code
[ric-plt/e2mgr.git] / E2Manager / models / get_nodeb_id_list_response.go
index 03f095d..7ed83aa 100644 (file)
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 // See the License for the specific language governing permissions and
 // limitations under the License.
-//
+
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 
 package models
 
@@ -33,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
 }