bddbfea1010c78ca7e488403770a373f01178dcf
[ric-plt/xapp-frame.git] / pkg / restapi / operations / xapp / get_xapp_config_list_responses.go
1 // Code generated by go-swagger; DO NOT EDIT.
2
3 package xapp
4
5 // This file was generated by the swagger tool.
6 // Editing this file might prove futile when you re-run the swagger generate command
7
8 import (
9         "net/http"
10
11         "github.com/go-openapi/runtime"
12
13         models "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/models"
14 )
15
16 // GetXappConfigListOKCode is the HTTP code returned for type GetXappConfigListOK
17 const GetXappConfigListOKCode int = 200
18
19 /*GetXappConfigListOK successful query of xApp config
20
21 swagger:response getXappConfigListOK
22 */
23 type GetXappConfigListOK struct {
24
25         /*
26           In: Body
27         */
28         Payload models.XappConfigList `json:"body,omitempty"`
29 }
30
31 // NewGetXappConfigListOK creates GetXappConfigListOK with default headers values
32 func NewGetXappConfigListOK() *GetXappConfigListOK {
33
34         return &GetXappConfigListOK{}
35 }
36
37 // WithPayload adds the payload to the get xapp config list o k response
38 func (o *GetXappConfigListOK) WithPayload(payload models.XappConfigList) *GetXappConfigListOK {
39         o.Payload = payload
40         return o
41 }
42
43 // SetPayload sets the payload to the get xapp config list o k response
44 func (o *GetXappConfigListOK) SetPayload(payload models.XappConfigList) {
45         o.Payload = payload
46 }
47
48 // WriteResponse to the client
49 func (o *GetXappConfigListOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
50
51         rw.WriteHeader(200)
52         payload := o.Payload
53         if payload == nil {
54                 // return empty array
55                 payload = models.XappConfigList{}
56         }
57
58         if err := producer.Produce(rw, payload); err != nil {
59                 panic(err) // let the recovery middleware deal with this
60         }
61 }
62
63 // GetXappConfigListInternalServerErrorCode is the HTTP code returned for type GetXappConfigListInternalServerError
64 const GetXappConfigListInternalServerErrorCode int = 500
65
66 /*GetXappConfigListInternalServerError Internal error
67
68 swagger:response getXappConfigListInternalServerError
69 */
70 type GetXappConfigListInternalServerError struct {
71 }
72
73 // NewGetXappConfigListInternalServerError creates GetXappConfigListInternalServerError with default headers values
74 func NewGetXappConfigListInternalServerError() *GetXappConfigListInternalServerError {
75
76         return &GetXappConfigListInternalServerError{}
77 }
78
79 // WriteResponse to the client
80 func (o *GetXappConfigListInternalServerError) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
81
82         rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
83
84         rw.WriteHeader(500)
85 }