Initial commit
[ta/config-manager.git] / cmframework / src / cmframework / server / cmhttprpc.py
1 # Copyright 2019 Nokia
2
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15
16 class HTTPRPC(object):
17     def __init__(self):
18         self.req_body = ''
19         self.req_filter = ''
20         self.req_params = {}
21         self.req_method = ''
22         self.rep_body = ''
23         self.rep_status = ''
24
25     def __str__(self):
26         return str.format('REQ: body:{body} filter:{filter} '
27                           'params:{params} method:{method} '
28                           'REP: body:{rep_body} status:{status}',
29                           body=self.req_body, filter=self.req_filter,
30                           params=str(self.req_params), method=self.req_method,
31                           rep_body=self.rep_body, status=self.rep_status)