#!/usr/bin/env python # # Copyright 2007 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # from google.net.proto import ProtocolBuffer import array import dummy_thread as thread __pychecker__ = """maxreturns=0 maxbranches=0 no-callinit unusednames=printElemNumber,debug_strs no-special""" from google.appengine.api.api_base_pb import * class UserServiceError(ProtocolBuffer.ProtocolMessage): OK = 0 REDIRECT_URL_TOO_LONG = 1 NOT_ALLOWED = 2 OAUTH_INVALID_TOKEN = 3 OAUTH_INVALID_REQUEST = 4 OAUTH_ERROR = 5 _ErrorCode_NAMES = { 0: "OK", 1: "REDIRECT_URL_TOO_LONG", 2: "NOT_ALLOWED", 3: "OAUTH_INVALID_TOKEN", 4: "OAUTH_INVALID_REQUEST", 5: "OAUTH_ERROR", } def ErrorCode_Name(cls, x): return cls._ErrorCode_NAMES.get(x, "") ErrorCode_Name = classmethod(ErrorCode_Name) def __init__(self, contents=None): pass if contents is not None: self.MergeFromString(contents) def MergeFrom(self, x): assert x is not self def Equals(self, x): if x is self: return 1 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 return initialized def ByteSize(self): n = 0 return n + 0 def Clear(self): pass def OutputUnchecked(self, out): pass def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", }, 0) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, }, 0, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" class CreateLoginURLRequest(ProtocolBuffer.ProtocolMessage): has_destination_url_ = 0 destination_url_ = "" has_auth_domain_ = 0 auth_domain_ = "" def __init__(self, contents=None): if contents is not None: self.MergeFromString(contents) def destination_url(self): return self.destination_url_ def set_destination_url(self, x): self.has_destination_url_ = 1 self.destination_url_ = x def clear_destination_url(self): if self.has_destination_url_: self.has_destination_url_ = 0 self.destination_url_ = "" def has_destination_url(self): return self.has_destination_url_ def auth_domain(self): return self.auth_domain_ def set_auth_domain(self, x): self.has_auth_domain_ = 1 self.auth_domain_ = x def clear_auth_domain(self): if self.has_auth_domain_: self.has_auth_domain_ = 0 self.auth_domain_ = "" def has_auth_domain(self): return self.has_auth_domain_ def MergeFrom(self, x): assert x is not self if (x.has_destination_url()): self.set_destination_url(x.destination_url()) if (x.has_auth_domain()): self.set_auth_domain(x.auth_domain()) def Equals(self, x): if x is self: return 1 if self.has_destination_url_ != x.has_destination_url_: return 0 if self.has_destination_url_ and self.destination_url_ != x.destination_url_: return 0 if self.has_auth_domain_ != x.has_auth_domain_: return 0 if self.has_auth_domain_ and self.auth_domain_ != x.auth_domain_: return 0 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 if (not self.has_destination_url_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: destination_url not set.') return initialized def ByteSize(self): n = 0 n += self.lengthString(len(self.destination_url_)) if (self.has_auth_domain_): n += 1 + self.lengthString(len(self.auth_domain_)) return n + 1 def Clear(self): self.clear_destination_url() self.clear_auth_domain() def OutputUnchecked(self, out): out.putVarInt32(10) out.putPrefixedString(self.destination_url_) if (self.has_auth_domain_): out.putVarInt32(18) out.putPrefixedString(self.auth_domain_) def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if tt == 10: self.set_destination_url(d.getPrefixedString()) continue if tt == 18: self.set_auth_domain(d.getPrefixedString()) continue if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" if self.has_destination_url_: res+=prefix+("destination_url: %s\n" % self.DebugFormatString(self.destination_url_)) if self.has_auth_domain_: res+=prefix+("auth_domain: %s\n" % self.DebugFormatString(self.auth_domain_)) return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) kdestination_url = 1 kauth_domain = 2 _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", 1: "destination_url", 2: "auth_domain", }, 2) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, 1: ProtocolBuffer.Encoder.STRING, 2: ProtocolBuffer.Encoder.STRING, }, 2, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" class CreateLoginURLResponse(ProtocolBuffer.ProtocolMessage): has_login_url_ = 0 login_url_ = "" def __init__(self, contents=None): if contents is not None: self.MergeFromString(contents) def login_url(self): return self.login_url_ def set_login_url(self, x): self.has_login_url_ = 1 self.login_url_ = x def clear_login_url(self): if self.has_login_url_: self.has_login_url_ = 0 self.login_url_ = "" def has_login_url(self): return self.has_login_url_ def MergeFrom(self, x): assert x is not self if (x.has_login_url()): self.set_login_url(x.login_url()) def Equals(self, x): if x is self: return 1 if self.has_login_url_ != x.has_login_url_: return 0 if self.has_login_url_ and self.login_url_ != x.login_url_: return 0 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 if (not self.has_login_url_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: login_url not set.') return initialized def ByteSize(self): n = 0 n += self.lengthString(len(self.login_url_)) return n + 1 def Clear(self): self.clear_login_url() def OutputUnchecked(self, out): out.putVarInt32(10) out.putPrefixedString(self.login_url_) def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if tt == 10: self.set_login_url(d.getPrefixedString()) continue if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" if self.has_login_url_: res+=prefix+("login_url: %s\n" % self.DebugFormatString(self.login_url_)) return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) klogin_url = 1 _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", 1: "login_url", }, 1) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, 1: ProtocolBuffer.Encoder.STRING, }, 1, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" class CreateLogoutURLRequest(ProtocolBuffer.ProtocolMessage): has_destination_url_ = 0 destination_url_ = "" has_auth_domain_ = 0 auth_domain_ = "" def __init__(self, contents=None): if contents is not None: self.MergeFromString(contents) def destination_url(self): return self.destination_url_ def set_destination_url(self, x): self.has_destination_url_ = 1 self.destination_url_ = x def clear_destination_url(self): if self.has_destination_url_: self.has_destination_url_ = 0 self.destination_url_ = "" def has_destination_url(self): return self.has_destination_url_ def auth_domain(self): return self.auth_domain_ def set_auth_domain(self, x): self.has_auth_domain_ = 1 self.auth_domain_ = x def clear_auth_domain(self): if self.has_auth_domain_: self.has_auth_domain_ = 0 self.auth_domain_ = "" def has_auth_domain(self): return self.has_auth_domain_ def MergeFrom(self, x): assert x is not self if (x.has_destination_url()): self.set_destination_url(x.destination_url()) if (x.has_auth_domain()): self.set_auth_domain(x.auth_domain()) def Equals(self, x): if x is self: return 1 if self.has_destination_url_ != x.has_destination_url_: return 0 if self.has_destination_url_ and self.destination_url_ != x.destination_url_: return 0 if self.has_auth_domain_ != x.has_auth_domain_: return 0 if self.has_auth_domain_ and self.auth_domain_ != x.auth_domain_: return 0 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 if (not self.has_destination_url_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: destination_url not set.') return initialized def ByteSize(self): n = 0 n += self.lengthString(len(self.destination_url_)) if (self.has_auth_domain_): n += 1 + self.lengthString(len(self.auth_domain_)) return n + 1 def Clear(self): self.clear_destination_url() self.clear_auth_domain() def OutputUnchecked(self, out): out.putVarInt32(10) out.putPrefixedString(self.destination_url_) if (self.has_auth_domain_): out.putVarInt32(18) out.putPrefixedString(self.auth_domain_) def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if tt == 10: self.set_destination_url(d.getPrefixedString()) continue if tt == 18: self.set_auth_domain(d.getPrefixedString()) continue if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" if self.has_destination_url_: res+=prefix+("destination_url: %s\n" % self.DebugFormatString(self.destination_url_)) if self.has_auth_domain_: res+=prefix+("auth_domain: %s\n" % self.DebugFormatString(self.auth_domain_)) return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) kdestination_url = 1 kauth_domain = 2 _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", 1: "destination_url", 2: "auth_domain", }, 2) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, 1: ProtocolBuffer.Encoder.STRING, 2: ProtocolBuffer.Encoder.STRING, }, 2, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" class CreateLogoutURLResponse(ProtocolBuffer.ProtocolMessage): has_logout_url_ = 0 logout_url_ = "" def __init__(self, contents=None): if contents is not None: self.MergeFromString(contents) def logout_url(self): return self.logout_url_ def set_logout_url(self, x): self.has_logout_url_ = 1 self.logout_url_ = x def clear_logout_url(self): if self.has_logout_url_: self.has_logout_url_ = 0 self.logout_url_ = "" def has_logout_url(self): return self.has_logout_url_ def MergeFrom(self, x): assert x is not self if (x.has_logout_url()): self.set_logout_url(x.logout_url()) def Equals(self, x): if x is self: return 1 if self.has_logout_url_ != x.has_logout_url_: return 0 if self.has_logout_url_ and self.logout_url_ != x.logout_url_: return 0 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 if (not self.has_logout_url_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: logout_url not set.') return initialized def ByteSize(self): n = 0 n += self.lengthString(len(self.logout_url_)) return n + 1 def Clear(self): self.clear_logout_url() def OutputUnchecked(self, out): out.putVarInt32(10) out.putPrefixedString(self.logout_url_) def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if tt == 10: self.set_logout_url(d.getPrefixedString()) continue if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" if self.has_logout_url_: res+=prefix+("logout_url: %s\n" % self.DebugFormatString(self.logout_url_)) return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) klogout_url = 1 _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", 1: "logout_url", }, 1) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, 1: ProtocolBuffer.Encoder.STRING, }, 1, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" class GetOAuthUserRequest(ProtocolBuffer.ProtocolMessage): def __init__(self, contents=None): pass if contents is not None: self.MergeFromString(contents) def MergeFrom(self, x): assert x is not self def Equals(self, x): if x is self: return 1 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 return initialized def ByteSize(self): n = 0 return n + 0 def Clear(self): pass def OutputUnchecked(self, out): pass def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", }, 0) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, }, 0, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" class GetOAuthUserResponse(ProtocolBuffer.ProtocolMessage): has_email_ = 0 email_ = "" has_user_id_ = 0 user_id_ = "" has_auth_domain_ = 0 auth_domain_ = "" has_user_organization_ = 0 user_organization_ = "" def __init__(self, contents=None): if contents is not None: self.MergeFromString(contents) def email(self): return self.email_ def set_email(self, x): self.has_email_ = 1 self.email_ = x def clear_email(self): if self.has_email_: self.has_email_ = 0 self.email_ = "" def has_email(self): return self.has_email_ def user_id(self): return self.user_id_ def set_user_id(self, x): self.has_user_id_ = 1 self.user_id_ = x def clear_user_id(self): if self.has_user_id_: self.has_user_id_ = 0 self.user_id_ = "" def has_user_id(self): return self.has_user_id_ def auth_domain(self): return self.auth_domain_ def set_auth_domain(self, x): self.has_auth_domain_ = 1 self.auth_domain_ = x def clear_auth_domain(self): if self.has_auth_domain_: self.has_auth_domain_ = 0 self.auth_domain_ = "" def has_auth_domain(self): return self.has_auth_domain_ def user_organization(self): return self.user_organization_ def set_user_organization(self, x): self.has_user_organization_ = 1 self.user_organization_ = x def clear_user_organization(self): if self.has_user_organization_: self.has_user_organization_ = 0 self.user_organization_ = "" def has_user_organization(self): return self.has_user_organization_ def MergeFrom(self, x): assert x is not self if (x.has_email()): self.set_email(x.email()) if (x.has_user_id()): self.set_user_id(x.user_id()) if (x.has_auth_domain()): self.set_auth_domain(x.auth_domain()) if (x.has_user_organization()): self.set_user_organization(x.user_organization()) def Equals(self, x): if x is self: return 1 if self.has_email_ != x.has_email_: return 0 if self.has_email_ and self.email_ != x.email_: return 0 if self.has_user_id_ != x.has_user_id_: return 0 if self.has_user_id_ and self.user_id_ != x.user_id_: return 0 if self.has_auth_domain_ != x.has_auth_domain_: return 0 if self.has_auth_domain_ and self.auth_domain_ != x.auth_domain_: return 0 if self.has_user_organization_ != x.has_user_organization_: return 0 if self.has_user_organization_ and self.user_organization_ != x.user_organization_: return 0 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 if (not self.has_email_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: email not set.') if (not self.has_user_id_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: user_id not set.') if (not self.has_auth_domain_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: auth_domain not set.') return initialized def ByteSize(self): n = 0 n += self.lengthString(len(self.email_)) n += self.lengthString(len(self.user_id_)) n += self.lengthString(len(self.auth_domain_)) if (self.has_user_organization_): n += 1 + self.lengthString(len(self.user_organization_)) return n + 3 def Clear(self): self.clear_email() self.clear_user_id() self.clear_auth_domain() self.clear_user_organization() def OutputUnchecked(self, out): out.putVarInt32(10) out.putPrefixedString(self.email_) out.putVarInt32(18) out.putPrefixedString(self.user_id_) out.putVarInt32(26) out.putPrefixedString(self.auth_domain_) if (self.has_user_organization_): out.putVarInt32(34) out.putPrefixedString(self.user_organization_) def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if tt == 10: self.set_email(d.getPrefixedString()) continue if tt == 18: self.set_user_id(d.getPrefixedString()) continue if tt == 26: self.set_auth_domain(d.getPrefixedString()) continue if tt == 34: self.set_user_organization(d.getPrefixedString()) continue if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" if self.has_email_: res+=prefix+("email: %s\n" % self.DebugFormatString(self.email_)) if self.has_user_id_: res+=prefix+("user_id: %s\n" % self.DebugFormatString(self.user_id_)) if self.has_auth_domain_: res+=prefix+("auth_domain: %s\n" % self.DebugFormatString(self.auth_domain_)) if self.has_user_organization_: res+=prefix+("user_organization: %s\n" % self.DebugFormatString(self.user_organization_)) return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) kemail = 1 kuser_id = 2 kauth_domain = 3 kuser_organization = 4 _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", 1: "email", 2: "user_id", 3: "auth_domain", 4: "user_organization", }, 4) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, 1: ProtocolBuffer.Encoder.STRING, 2: ProtocolBuffer.Encoder.STRING, 3: ProtocolBuffer.Encoder.STRING, 4: ProtocolBuffer.Encoder.STRING, }, 4, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" class CheckOAuthSignatureRequest(ProtocolBuffer.ProtocolMessage): def __init__(self, contents=None): pass if contents is not None: self.MergeFromString(contents) def MergeFrom(self, x): assert x is not self def Equals(self, x): if x is self: return 1 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 return initialized def ByteSize(self): n = 0 return n + 0 def Clear(self): pass def OutputUnchecked(self, out): pass def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", }, 0) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, }, 0, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" class CheckOAuthSignatureResponse(ProtocolBuffer.ProtocolMessage): has_oauth_consumer_key_ = 0 oauth_consumer_key_ = "" def __init__(self, contents=None): if contents is not None: self.MergeFromString(contents) def oauth_consumer_key(self): return self.oauth_consumer_key_ def set_oauth_consumer_key(self, x): self.has_oauth_consumer_key_ = 1 self.oauth_consumer_key_ = x def clear_oauth_consumer_key(self): if self.has_oauth_consumer_key_: self.has_oauth_consumer_key_ = 0 self.oauth_consumer_key_ = "" def has_oauth_consumer_key(self): return self.has_oauth_consumer_key_ def MergeFrom(self, x): assert x is not self if (x.has_oauth_consumer_key()): self.set_oauth_consumer_key(x.oauth_consumer_key()) def Equals(self, x): if x is self: return 1 if self.has_oauth_consumer_key_ != x.has_oauth_consumer_key_: return 0 if self.has_oauth_consumer_key_ and self.oauth_consumer_key_ != x.oauth_consumer_key_: return 0 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 if (not self.has_oauth_consumer_key_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: oauth_consumer_key not set.') return initialized def ByteSize(self): n = 0 n += self.lengthString(len(self.oauth_consumer_key_)) return n + 1 def Clear(self): self.clear_oauth_consumer_key() def OutputUnchecked(self, out): out.putVarInt32(10) out.putPrefixedString(self.oauth_consumer_key_) def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if tt == 10: self.set_oauth_consumer_key(d.getPrefixedString()) continue if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" if self.has_oauth_consumer_key_: res+=prefix+("oauth_consumer_key: %s\n" % self.DebugFormatString(self.oauth_consumer_key_)) return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) koauth_consumer_key = 1 _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", 1: "oauth_consumer_key", }, 1) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, 1: ProtocolBuffer.Encoder.STRING, }, 1, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" class CreateFederatedLoginRequest(ProtocolBuffer.ProtocolMessage): has_claimed_id_ = 0 claimed_id_ = "" has_continue_url_ = 0 continue_url_ = "" has_authority_ = 0 authority_ = "" def __init__(self, contents=None): if contents is not None: self.MergeFromString(contents) def claimed_id(self): return self.claimed_id_ def set_claimed_id(self, x): self.has_claimed_id_ = 1 self.claimed_id_ = x def clear_claimed_id(self): if self.has_claimed_id_: self.has_claimed_id_ = 0 self.claimed_id_ = "" def has_claimed_id(self): return self.has_claimed_id_ def continue_url(self): return self.continue_url_ def set_continue_url(self, x): self.has_continue_url_ = 1 self.continue_url_ = x def clear_continue_url(self): if self.has_continue_url_: self.has_continue_url_ = 0 self.continue_url_ = "" def has_continue_url(self): return self.has_continue_url_ def authority(self): return self.authority_ def set_authority(self, x): self.has_authority_ = 1 self.authority_ = x def clear_authority(self): if self.has_authority_: self.has_authority_ = 0 self.authority_ = "" def has_authority(self): return self.has_authority_ def MergeFrom(self, x): assert x is not self if (x.has_claimed_id()): self.set_claimed_id(x.claimed_id()) if (x.has_continue_url()): self.set_continue_url(x.continue_url()) if (x.has_authority()): self.set_authority(x.authority()) def Equals(self, x): if x is self: return 1 if self.has_claimed_id_ != x.has_claimed_id_: return 0 if self.has_claimed_id_ and self.claimed_id_ != x.claimed_id_: return 0 if self.has_continue_url_ != x.has_continue_url_: return 0 if self.has_continue_url_ and self.continue_url_ != x.continue_url_: return 0 if self.has_authority_ != x.has_authority_: return 0 if self.has_authority_ and self.authority_ != x.authority_: return 0 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 if (not self.has_claimed_id_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: claimed_id not set.') if (not self.has_continue_url_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: continue_url not set.') return initialized def ByteSize(self): n = 0 n += self.lengthString(len(self.claimed_id_)) n += self.lengthString(len(self.continue_url_)) if (self.has_authority_): n += 1 + self.lengthString(len(self.authority_)) return n + 2 def Clear(self): self.clear_claimed_id() self.clear_continue_url() self.clear_authority() def OutputUnchecked(self, out): out.putVarInt32(10) out.putPrefixedString(self.claimed_id_) out.putVarInt32(18) out.putPrefixedString(self.continue_url_) if (self.has_authority_): out.putVarInt32(26) out.putPrefixedString(self.authority_) def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if tt == 10: self.set_claimed_id(d.getPrefixedString()) continue if tt == 18: self.set_continue_url(d.getPrefixedString()) continue if tt == 26: self.set_authority(d.getPrefixedString()) continue if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" if self.has_claimed_id_: res+=prefix+("claimed_id: %s\n" % self.DebugFormatString(self.claimed_id_)) if self.has_continue_url_: res+=prefix+("continue_url: %s\n" % self.DebugFormatString(self.continue_url_)) if self.has_authority_: res+=prefix+("authority: %s\n" % self.DebugFormatString(self.authority_)) return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) kclaimed_id = 1 kcontinue_url = 2 kauthority = 3 _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", 1: "claimed_id", 2: "continue_url", 3: "authority", }, 3) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, 1: ProtocolBuffer.Encoder.STRING, 2: ProtocolBuffer.Encoder.STRING, 3: ProtocolBuffer.Encoder.STRING, }, 3, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" class CreateFederatedLoginResponse(ProtocolBuffer.ProtocolMessage): has_redirected_url_ = 0 redirected_url_ = "" def __init__(self, contents=None): if contents is not None: self.MergeFromString(contents) def redirected_url(self): return self.redirected_url_ def set_redirected_url(self, x): self.has_redirected_url_ = 1 self.redirected_url_ = x def clear_redirected_url(self): if self.has_redirected_url_: self.has_redirected_url_ = 0 self.redirected_url_ = "" def has_redirected_url(self): return self.has_redirected_url_ def MergeFrom(self, x): assert x is not self if (x.has_redirected_url()): self.set_redirected_url(x.redirected_url()) def Equals(self, x): if x is self: return 1 if self.has_redirected_url_ != x.has_redirected_url_: return 0 if self.has_redirected_url_ and self.redirected_url_ != x.redirected_url_: return 0 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 if (not self.has_redirected_url_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: redirected_url not set.') return initialized def ByteSize(self): n = 0 n += self.lengthString(len(self.redirected_url_)) return n + 1 def Clear(self): self.clear_redirected_url() def OutputUnchecked(self, out): out.putVarInt32(10) out.putPrefixedString(self.redirected_url_) def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if tt == 10: self.set_redirected_url(d.getPrefixedString()) continue if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" if self.has_redirected_url_: res+=prefix+("redirected_url: %s\n" % self.DebugFormatString(self.redirected_url_)) return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) kredirected_url = 1 _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", 1: "redirected_url", }, 1) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, 1: ProtocolBuffer.Encoder.STRING, }, 1, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" class CreateFederatedLogoutRequest(ProtocolBuffer.ProtocolMessage): has_destination_url_ = 0 destination_url_ = "" def __init__(self, contents=None): if contents is not None: self.MergeFromString(contents) def destination_url(self): return self.destination_url_ def set_destination_url(self, x): self.has_destination_url_ = 1 self.destination_url_ = x def clear_destination_url(self): if self.has_destination_url_: self.has_destination_url_ = 0 self.destination_url_ = "" def has_destination_url(self): return self.has_destination_url_ def MergeFrom(self, x): assert x is not self if (x.has_destination_url()): self.set_destination_url(x.destination_url()) def Equals(self, x): if x is self: return 1 if self.has_destination_url_ != x.has_destination_url_: return 0 if self.has_destination_url_ and self.destination_url_ != x.destination_url_: return 0 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 if (not self.has_destination_url_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: destination_url not set.') return initialized def ByteSize(self): n = 0 n += self.lengthString(len(self.destination_url_)) return n + 1 def Clear(self): self.clear_destination_url() def OutputUnchecked(self, out): out.putVarInt32(10) out.putPrefixedString(self.destination_url_) def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if tt == 10: self.set_destination_url(d.getPrefixedString()) continue if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" if self.has_destination_url_: res+=prefix+("destination_url: %s\n" % self.DebugFormatString(self.destination_url_)) return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) kdestination_url = 1 _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", 1: "destination_url", }, 1) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, 1: ProtocolBuffer.Encoder.STRING, }, 1, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" class CreateFederatedLogoutResponse(ProtocolBuffer.ProtocolMessage): has_logout_url_ = 0 logout_url_ = "" def __init__(self, contents=None): if contents is not None: self.MergeFromString(contents) def logout_url(self): return self.logout_url_ def set_logout_url(self, x): self.has_logout_url_ = 1 self.logout_url_ = x def clear_logout_url(self): if self.has_logout_url_: self.has_logout_url_ = 0 self.logout_url_ = "" def has_logout_url(self): return self.has_logout_url_ def MergeFrom(self, x): assert x is not self if (x.has_logout_url()): self.set_logout_url(x.logout_url()) def Equals(self, x): if x is self: return 1 if self.has_logout_url_ != x.has_logout_url_: return 0 if self.has_logout_url_ and self.logout_url_ != x.logout_url_: return 0 return 1 def IsInitialized(self, debug_strs=None): initialized = 1 if (not self.has_logout_url_): initialized = 0 if debug_strs is not None: debug_strs.append('Required field: logout_url not set.') return initialized def ByteSize(self): n = 0 n += self.lengthString(len(self.logout_url_)) return n + 1 def Clear(self): self.clear_logout_url() def OutputUnchecked(self, out): out.putVarInt32(10) out.putPrefixedString(self.logout_url_) def TryMerge(self, d): while d.avail() > 0: tt = d.getVarInt32() if tt == 10: self.set_logout_url(d.getPrefixedString()) continue if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError d.skipData(tt) def __str__(self, prefix="", printElemNumber=0): res="" if self.has_logout_url_: res+=prefix+("logout_url: %s\n" % self.DebugFormatString(self.logout_url_)) return res def _BuildTagLookupTable(sparse, maxtag, default=None): return tuple([sparse.get(i, default) for i in xrange(0, 1+maxtag)]) klogout_url = 1 _TEXT = _BuildTagLookupTable({ 0: "ErrorCode", 1: "logout_url", }, 1) _TYPES = _BuildTagLookupTable({ 0: ProtocolBuffer.Encoder.NUMERIC, 1: ProtocolBuffer.Encoder.STRING, }, 1, ProtocolBuffer.Encoder.MAX_TYPE) _STYLE = """""" _STYLE_CONTENT_TYPE = """""" __all__ = ['UserServiceError','CreateLoginURLRequest','CreateLoginURLResponse','CreateLogoutURLRequest','CreateLogoutURLResponse','GetOAuthUserRequest','GetOAuthUserResponse','CheckOAuthSignatureRequest','CheckOAuthSignatureResponse','CreateFederatedLoginRequest','CreateFederatedLoginResponse','CreateFederatedLogoutRequest','CreateFederatedLogoutResponse']