Policy status notification handling - initial rollup
[ric-plt/a1.git] / pkg / restapi / operations / a1_e_i_data_delivery / a1_controller_data_delivery_parameters.go
1 /*
2 ==================================================================================
3   Copyright (c) 2021 Samsung
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16
17    This source code is part of the near-RT RIC (RAN Intelligent Controller)
18    platform project (RICP).
19 ==================================================================================
20 */
21 // Code generated by go-swagger; DO NOT EDIT.
22
23 package a1_e_i_data_delivery
24
25 // This file was generated by the swagger tool.
26 // Editing this file might prove futile when you re-run the swagger generate command
27
28 import (
29         "net/http"
30
31         "github.com/go-openapi/errors"
32         "github.com/go-openapi/runtime"
33         "github.com/go-openapi/runtime/middleware"
34 )
35
36 // NewA1ControllerDataDeliveryParams creates a new A1ControllerDataDeliveryParams object
37 //
38 // There are no default values defined in the spec.
39 func NewA1ControllerDataDeliveryParams() A1ControllerDataDeliveryParams {
40
41         return A1ControllerDataDeliveryParams{}
42 }
43
44 // A1ControllerDataDeliveryParams contains all the bound params for the a1 controller data delivery operation
45 // typically these are obtained from a http.Request
46 //
47 // swagger:parameters a1.controller.data_delivery
48 type A1ControllerDataDeliveryParams struct {
49
50         // HTTP Request Object
51         HTTPRequest *http.Request `json:"-"`
52
53         /*
54           In: body
55         */
56         Body interface{}
57 }
58
59 // BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface
60 // for simple values it will use straight method calls.
61 //
62 // To ensure default values, the struct must have been initialized with NewA1ControllerDataDeliveryParams() beforehand.
63 func (o *A1ControllerDataDeliveryParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
64         var res []error
65
66         o.HTTPRequest = r
67
68         if runtime.HasBody(r) {
69                 defer r.Body.Close()
70                 var body interface{}
71                 if err := route.Consumer.Consume(r.Body, &body); err != nil {
72                         res = append(res, errors.NewParseError("body", "body", "", err))
73                 } else {
74                         // no validation on generic interface
75                         o.Body = body
76                 }
77         }
78         if len(res) > 0 {
79                 return errors.CompositeValidationError(res...)
80         }
81         return nil
82 }