public PrincipalPrivilegeSet recv_get_privilege_set() { TMessage msg = iprot_.ReadMessageBegin(); if (msg.Type == TMessageType.Exception) { TApplicationException x = TApplicationException.Read(iprot_); iprot_.ReadMessageEnd(); throw x; } get_privilege_set_result result = new get_privilege_set_result(); result.Read(iprot_); iprot_.ReadMessageEnd(); if (result.__isset.success) { return result.Success; } if (result.__isset.o1) { throw result.O1; } throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "get_privilege_set failed: unknown result"); }
public void get_privilege_set_Process(int seqid, TProtocol iprot, TProtocol oprot) { get_privilege_set_args args = new get_privilege_set_args(); args.Read(iprot); iprot.ReadMessageEnd(); get_privilege_set_result result = new get_privilege_set_result(); try { result.Success = iface_.get_privilege_set(args.HiveObject, args.User_name, args.Group_names); } catch (MetaException o1) { result.O1 = o1; } oprot.WriteMessageBegin(new TMessage("get_privilege_set", TMessageType.Reply, seqid)); result.Write(oprot); oprot.WriteMessageEnd(); oprot.Transport.Flush(); }