Moving RMR message reciver into go routine
[ric-plt/a1.git] / pkg / restapi / operations / a1_mediator / a1_controller_get_policy_type_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_mediator
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/middleware"
33         "github.com/go-openapi/strfmt"
34         "github.com/go-openapi/swag"
35         "github.com/go-openapi/validate"
36 )
37
38 // NewA1ControllerGetPolicyTypeParams creates a new A1ControllerGetPolicyTypeParams object
39 // no default values defined in spec.
40 func NewA1ControllerGetPolicyTypeParams() A1ControllerGetPolicyTypeParams {
41
42         return A1ControllerGetPolicyTypeParams{}
43 }
44
45 // A1ControllerGetPolicyTypeParams contains all the bound params for the a1 controller get policy type operation
46 // typically these are obtained from a http.Request
47 //
48 // swagger:parameters a1.controller.get_policy_type
49 type A1ControllerGetPolicyTypeParams struct {
50
51         // HTTP Request Object
52         HTTPRequest *http.Request `json:"-"`
53
54         /*represents a policy type identifier. Currently this is restricted to an integer range.
55
56           Required: true
57           Maximum: 2.147483647e+09
58           Minimum: 1
59           In: path
60         */
61         PolicyTypeID int64
62 }
63
64 // BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface
65 // for simple values it will use straight method calls.
66 //
67 // To ensure default values, the struct must have been initialized with NewA1ControllerGetPolicyTypeParams() beforehand.
68 func (o *A1ControllerGetPolicyTypeParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
69         var res []error
70
71         o.HTTPRequest = r
72
73         rPolicyTypeID, rhkPolicyTypeID, _ := route.Params.GetOK("policy_type_id")
74         if err := o.bindPolicyTypeID(rPolicyTypeID, rhkPolicyTypeID, route.Formats); err != nil {
75                 res = append(res, err)
76         }
77
78         if len(res) > 0 {
79                 return errors.CompositeValidationError(res...)
80         }
81         return nil
82 }
83
84 // bindPolicyTypeID binds and validates parameter PolicyTypeID from path.
85 func (o *A1ControllerGetPolicyTypeParams) bindPolicyTypeID(rawData []string, hasKey bool, formats strfmt.Registry) error {
86         var raw string
87         if len(rawData) > 0 {
88                 raw = rawData[len(rawData)-1]
89         }
90
91         // Required: true
92         // Parameter is provided by construction from the route
93
94         value, err := swag.ConvertInt64(raw)
95         if err != nil {
96                 return errors.InvalidType("policy_type_id", "path", "int64", raw)
97         }
98         o.PolicyTypeID = value
99
100         if err := o.validatePolicyTypeID(formats); err != nil {
101                 return err
102         }
103
104         return nil
105 }
106
107 // validatePolicyTypeID carries on validations for parameter PolicyTypeID
108 func (o *A1ControllerGetPolicyTypeParams) validatePolicyTypeID(formats strfmt.Registry) error {
109
110         if err := validate.MinimumInt("policy_type_id", "path", int64(o.PolicyTypeID), 1, false); err != nil {
111                 return err
112         }
113
114         if err := validate.MaximumInt("policy_type_id", "path", int64(o.PolicyTypeID), 2.147483647e+09, false); err != nil {
115                 return err
116         }
117
118         return nil
119 }