Policy status notification handling - initial rollup
[ric-plt/a1.git] / pkg / restapi / operations / a1_mediator / a1_controller_get_all_policy_types_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 )
34
35 // NewA1ControllerGetAllPolicyTypesParams creates a new A1ControllerGetAllPolicyTypesParams object
36 //
37 // There are no default values defined in the spec.
38 func NewA1ControllerGetAllPolicyTypesParams() A1ControllerGetAllPolicyTypesParams {
39
40         return A1ControllerGetAllPolicyTypesParams{}
41 }
42
43 // A1ControllerGetAllPolicyTypesParams contains all the bound params for the a1 controller get all policy types operation
44 // typically these are obtained from a http.Request
45 //
46 // swagger:parameters a1.controller.get_all_policy_types
47 type A1ControllerGetAllPolicyTypesParams struct {
48
49         // HTTP Request Object
50         HTTPRequest *http.Request `json:"-"`
51 }
52
53 // BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface
54 // for simple values it will use straight method calls.
55 //
56 // To ensure default values, the struct must have been initialized with NewA1ControllerGetAllPolicyTypesParams() beforehand.
57 func (o *A1ControllerGetAllPolicyTypesParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
58         var res []error
59
60         o.HTTPRequest = r
61
62         if len(res) > 0 {
63                 return errors.CompositeValidationError(res...)
64         }
65         return nil
66 }