Policy status notification handling - initial rollup
[ric-plt/a1.git] / pkg / restapi / operations / a1_mediator / a1_controller_get_all_policy_types.go
index 70758b3..eeef4ae 100644 (file)
@@ -49,7 +49,7 @@ func NewA1ControllerGetAllPolicyTypes(ctx *middleware.Context, handler A1Control
        return &A1ControllerGetAllPolicyTypes{Context: ctx, Handler: handler}
 }
 
-/*A1ControllerGetAllPolicyTypes swagger:route GET /a1-p/policytypes A1 Mediator a1ControllerGetAllPolicyTypes
+/* A1ControllerGetAllPolicyTypes swagger:route GET /a1-p/policytypes A1 Mediator a1ControllerGetAllPolicyTypes
 
 Get a list of all registered policy type ids
 
@@ -62,17 +62,15 @@ type A1ControllerGetAllPolicyTypes struct {
 func (o *A1ControllerGetAllPolicyTypes) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
        route, rCtx, _ := o.Context.RouteInfo(r)
        if rCtx != nil {
-               r = rCtx
+               *r = *rCtx
        }
        var Params = NewA1ControllerGetAllPolicyTypesParams()
-
        if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
                o.Context.Respond(rw, r, route.Produces, route, err)
                return
        }
 
        res := o.Handler.Handle(Params) // actually handle the request
-
        o.Context.Respond(rw, r, route.Produces, route, res)
 
 }