X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=E2Manager%2Fhttpserver%2Fhttp_server.go;h=320acd08ec3b29bfcd6403da12c8b98ee13e35fa;hb=refs%2Fheads%2FPI5;hp=2c140eb3b41dd76589b89d7ab86fc44ba598b7cb;hpb=514e6041ca6b9b92cb887c941767f298a746e315;p=ric-plt%2Fe2mgr.git diff --git a/E2Manager/httpserver/http_server.go b/E2Manager/httpserver/http_server.go index 2c140eb..320acd0 100644 --- a/E2Manager/httpserver/http_server.go +++ b/E2Manager/httpserver/http_server.go @@ -49,9 +49,7 @@ func initializeRoutes(router *mux.Router, rootController controllers.IRootContro rr.HandleFunc("/{ranName}", nodebController.GetNodeb).Methods(http.MethodGet) rr.HandleFunc("/{ranName}/update", nodebController.UpdateGnb).Methods(http.MethodPut) rr.HandleFunc("/shutdown", nodebController.Shutdown).Methods(http.MethodPut) - rr.HandleFunc("/{ranName}/reset", nodebController.X2Reset).Methods(http.MethodPut) - rr.HandleFunc("/x2-setup", nodebController.X2Setup).Methods(http.MethodPost) - rr.HandleFunc("/endc-setup", nodebController.EndcSetup).Methods(http.MethodPost) + rr.HandleFunc("/parameters", nodebController.SetGeneralConfiguration).Methods(http.MethodPut) rrr := r.PathPrefix("/e2t").Subrouter() rrr.HandleFunc("/list", e2tController.GetE2TInstances).Methods(http.MethodGet) }