6 #ifndef __ALTER_USER_H__ 7 #define __ALTER_USER_H__ 28 options(std::map<std::string, std::string>())
55 std::map<std::string, std::string>
options;
65 ::avro::encode(e, v.
name);
66 ::avro::encode(e, v.
action);
67 ::avro::encode(e, v.
value);
73 if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
75 const std::vector<size_t> fo = rd->fieldOrder();
77 for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
82 ::avro::decode(d, v.
name);
86 ::avro::decode(d, v.
action);
90 ::avro::decode(d, v.
value);
104 ::avro::decode(d, v.
name);
105 ::avro::decode(d, v.
action);
106 ::avro::decode(d, v.
value);
144 ::avro::encode(e, v.
name);
149 if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
151 const std::vector<size_t> fo = rd->fieldOrder();
153 for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
158 ::avro::decode(d, v.
name);
168 ::avro::decode(d, v.
name);
std::map< std::string, std::string > options
AlterUserRequest()
Constructs an AlterUserRequest object with default parameter values.
A set of output parameters for alterUser(const AlterUserRequest&) const.
A set of input parameters for alterUser(const AlterUserRequest&) const.
AlterUserResponse()
Constructs an AlterUserResponse object with default parameter values.
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.