Moving RMR message reciver into go routine
[ric-plt/a1.git] / a1-go / 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 // no default values defined in spec.
38 func NewA1ControllerDataDeliveryParams() A1ControllerDataDeliveryParams {
39
40         return A1ControllerDataDeliveryParams{}
41 }
42
43 // A1ControllerDataDeliveryParams contains all the bound params for the a1 controller data delivery operation
44 // typically these are obtained from a http.Request
45 //
46 // swagger:parameters a1.controller.data_delivery
47 type A1ControllerDataDeliveryParams struct {
48
49         // HTTP Request Object
50         HTTPRequest *http.Request `json:"-"`
51
52         /*
53           In: body
54         */
55         Body interface{}
56 }
57
58 // BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface
59 // for simple values it will use straight method calls.
60 //
61 // To ensure default values, the struct must have been initialized with NewA1ControllerDataDeliveryParams() beforehand.
62 func (o *A1ControllerDataDeliveryParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
63         var res []error
64
65         o.HTTPRequest = r
66
67         if runtime.HasBody(r) {
68                 defer r.Body.Close()
69                 var body interface{}
70                 if err := route.Consumer.Consume(r.Body, &body); err != nil {
71                         res = append(res, errors.NewParseError("body", "body", "", err))
72                 } else {
73                         // no validation on generic interface
74                         o.Body = body
75                 }
76         }
77         if len(res) > 0 {
78                 return errors.CompositeValidationError(res...)
79         }
80         return nil
81 }