class AuthService::Processor
Public Instance Methods
process_confirmIdentifier(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 363 def process_confirmIdentifier(seqid, iprot, oprot) args = read_args(iprot, ConfirmIdentifier_args) result = ConfirmIdentifier_result.new() begin result.success = @handler.confirmIdentifier(args.authSessionId, args.request) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'confirmIdentifier', seqid) end
process_exchangeKey(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 374 def process_exchangeKey(seqid, iprot, oprot) args = read_args(iprot, ExchangeKey_args) result = ExchangeKey_result.new() begin result.success = @handler.exchangeKey(args.authSessionId, args.request) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'exchangeKey', seqid) end
process_getAuthRSAKey(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 330 def process_getAuthRSAKey(seqid, iprot, oprot) args = read_args(iprot, GetAuthRSAKey_args) result = GetAuthRSAKey_result.new() begin result.success = @handler.getAuthRSAKey(args.authSessionId, args.identityProvider) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'getAuthRSAKey', seqid) end
process_issueTokenForAccountMigration(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 297 def process_issueTokenForAccountMigration(seqid, iprot, oprot) args = read_args(iprot, IssueTokenForAccountMigration_args) result = IssueTokenForAccountMigration_result.new() begin result.success = @handler.issueTokenForAccountMigration(args.migrationSessionId) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'issueTokenForAccountMigration', seqid) end
process_issueTokenForAccountMigrationSettings(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 308 def process_issueTokenForAccountMigrationSettings(seqid, iprot, oprot) args = read_args(iprot, IssueTokenForAccountMigrationSettings_args) result = IssueTokenForAccountMigrationSettings_result.new() begin result.success = @handler.issueTokenForAccountMigrationSettings(args.enforce) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'issueTokenForAccountMigrationSettings', seqid) end
process_removeIdentifier(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 286 def process_removeIdentifier(seqid, iprot, oprot) args = read_args(iprot, RemoveIdentifier_args) result = RemoveIdentifier_result.new() begin result.success = @handler.removeIdentifier(args.authSessionId, args.request) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'removeIdentifier', seqid) end
process_resendIdentifierConfirmation(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 352 def process_resendIdentifierConfirmation(seqid, iprot, oprot) args = read_args(iprot, ResendIdentifierConfirmation_args) result = ResendIdentifierConfirmation_result.new() begin result.success = @handler.resendIdentifierConfirmation(args.authSessionId, args.request) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'resendIdentifierConfirmation', seqid) end
process_respondE2EELoginRequest(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 319 def process_respondE2EELoginRequest(seqid, iprot, oprot) args = read_args(iprot, RespondE2EELoginRequest_args) result = RespondE2EELoginRequest_result.new() begin @handler.respondE2EELoginRequest(args.verifier, args.publicKey, args.encryptedKeyChain, args.hashKeyChain, args.errorCode) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'respondE2EELoginRequest', seqid) end
process_setClovaCredential(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 385 def process_setClovaCredential(seqid, iprot, oprot) args = read_args(iprot, SetClovaCredential_args) result = SetClovaCredential_result.new() begin result.success = @handler.setClovaCredential(args.authSessionId, args.request) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'setClovaCredential', seqid) end
process_setIdentifier(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 341 def process_setIdentifier(seqid, iprot, oprot) args = read_args(iprot, SetIdentifier_args) result = SetIdentifier_result.new() begin result.success = @handler.setIdentifier(args.authSessionId, args.request) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'setIdentifier', seqid) end
process_setIdentifierAndPassword(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 253 def process_setIdentifierAndPassword(seqid, iprot, oprot) args = read_args(iprot, SetIdentifierAndPassword_args) result = SetIdentifierAndPassword_result.new() begin result.success = @handler.setIdentifierAndPassword(args.authSessionId, args.request) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'setIdentifierAndPassword', seqid) end
process_setPassword(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 242 def process_setPassword(seqid, iprot, oprot) args = read_args(iprot, SetPassword_args) result = SetPassword_result.new() begin result.success = @handler.setPassword(args.authSessionId, args.encryptedPassword) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'setPassword', seqid) end
process_updateIdentifier(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 264 def process_updateIdentifier(seqid, iprot, oprot) args = read_args(iprot, UpdateIdentifier_args) result = UpdateIdentifier_result.new() begin result.success = @handler.updateIdentifier(args.authSessionId, args.request) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'updateIdentifier', seqid) end
process_updatePassword(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/auth_service.rb, line 275 def process_updatePassword(seqid, iprot, oprot) args = read_args(iprot, UpdatePassword_args) result = UpdatePassword_result.new() begin result.success = @handler.updatePassword(args.authSessionId, args.request) rescue ::TalkException => e result.e = e end write_result(result, oprot, 'updatePassword', seqid) end