GPUdb C++ API  Version 6.2.0.3
alter_user.h
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the GPUdb schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 #ifndef __ALTER_USER_H__
7 #define __ALTER_USER_H__
8 
9 namespace gpudb
10 {
11 
19  {
20 
25  name(std::string()),
26  action(std::string()),
27  value(std::string()),
28  options(std::map<std::string, std::string>())
29  {
30  }
31 
49  AlterUserRequest(const std::string& name_, const std::string& action_, const std::string& value_, const std::map<std::string, std::string>& options_):
50  name( name_ ),
51  action( action_ ),
52  value( value_ ),
53  options( options_ )
54  {
55  }
56 
57  std::string name;
58  std::string action;
59  std::string value;
60  std::map<std::string, std::string> options;
61  };
62 }
63 
64 namespace avro
65 {
66  template<> struct codec_traits<gpudb::AlterUserRequest>
67  {
68  static void encode(Encoder& e, const gpudb::AlterUserRequest& v)
69  {
70  ::avro::encode(e, v.name);
71  ::avro::encode(e, v.action);
72  ::avro::encode(e, v.value);
73  ::avro::encode(e, v.options);
74  }
75 
76  static void decode(Decoder& d, gpudb::AlterUserRequest& v)
77  {
78  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
79  {
80  const std::vector<size_t> fo = rd->fieldOrder();
81 
82  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
83  {
84  switch (*it)
85  {
86  case 0:
87  ::avro::decode(d, v.name);
88  break;
89 
90  case 1:
91  ::avro::decode(d, v.action);
92  break;
93 
94  case 2:
95  ::avro::decode(d, v.value);
96  break;
97 
98  case 3:
99  ::avro::decode(d, v.options);
100  break;
101 
102  default:
103  break;
104  }
105  }
106  }
107  else
108  {
109  ::avro::decode(d, v.name);
110  ::avro::decode(d, v.action);
111  ::avro::decode(d, v.value);
112  ::avro::decode(d, v.options);
113  }
114  }
115  };
116 }
117 
118 namespace gpudb
119 {
120 
128  {
129 
135  name(std::string())
136  {
137  }
138 
139  std::string name;
140  };
141 }
142 
143 namespace avro
144 {
145  template<> struct codec_traits<gpudb::AlterUserResponse>
146  {
147  static void encode(Encoder& e, const gpudb::AlterUserResponse& v)
148  {
149  ::avro::encode(e, v.name);
150  }
151 
152  static void decode(Decoder& d, gpudb::AlterUserResponse& v)
153  {
154  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
155  {
156  const std::vector<size_t> fo = rd->fieldOrder();
157 
158  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
159  {
160  switch (*it)
161  {
162  case 0:
163  ::avro::decode(d, v.name);
164  break;
165 
166  default:
167  break;
168  }
169  }
170  }
171  else
172  {
173  ::avro::decode(d, v.name);
174  }
175  }
176  };
177 }
178 
179 #endif
std::map< std::string, std::string > options
Definition: alter_user.h:60
AlterUserRequest()
Constructs an AlterUserRequest object with default parameter values.
Definition: alter_user.h:24
A set of output parameters for alterUser(const AlterUserRequest&) const.
Definition: alter_user.h:127
A set of input parameters for alterUser(const AlterUserRequest&) const.
Definition: alter_user.h:18
AlterUserRequest(const std::string &name_, const std::string &action_, const std::string &value_, const std::map< std::string, std::string > &options_)
Constructs an AlterUserRequest object with the specified parameters.
Definition: alter_user.h:49
AlterUserResponse()
Constructs an AlterUserResponse object with default parameter values.
Definition: alter_user.h:134