Copy latest code
[ric-plt/e2mgr.git] / E2Manager / models / get_nodeb_response.go
index 9c2bd8a..1eaa32a 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,14 +36,14 @@ func NewGetNodebResponse(nodebInfo *entities.NodebInfo) *GetNodebResponse {
        }
 }
 
-func (response *GetNodebResponse) Marshal() (string, error) {
+func (response *GetNodebResponse) Marshal() ([]byte, error) {
        m := jsonpb.Marshaler{}
        result, err := m.MarshalToString(response.nodebInfo)
 
        if err != nil {
-               return "", e2managererrors.NewInternalError()
+               return nil, e2managererrors.NewInternalError()
        }
 
-       return result, nil
+       return []byte(result), nil
 
 }