user_service.pb.go 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google.golang.org/appengine/internal/user/user_service.proto
  3. package user
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. // Reference imports to suppress errors if they are not otherwise used.
  8. var _ = proto.Marshal
  9. var _ = fmt.Errorf
  10. var _ = math.Inf
  11. // This is a compile-time assertion to ensure that this generated file
  12. // is compatible with the proto package it is being compiled against.
  13. // A compilation error at this line likely means your copy of the
  14. // proto package needs to be updated.
  15. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  16. type UserServiceError_ErrorCode int32
  17. const (
  18. UserServiceError_OK UserServiceError_ErrorCode = 0
  19. UserServiceError_REDIRECT_URL_TOO_LONG UserServiceError_ErrorCode = 1
  20. UserServiceError_NOT_ALLOWED UserServiceError_ErrorCode = 2
  21. UserServiceError_OAUTH_INVALID_TOKEN UserServiceError_ErrorCode = 3
  22. UserServiceError_OAUTH_INVALID_REQUEST UserServiceError_ErrorCode = 4
  23. UserServiceError_OAUTH_ERROR UserServiceError_ErrorCode = 5
  24. )
  25. var UserServiceError_ErrorCode_name = map[int32]string{
  26. 0: "OK",
  27. 1: "REDIRECT_URL_TOO_LONG",
  28. 2: "NOT_ALLOWED",
  29. 3: "OAUTH_INVALID_TOKEN",
  30. 4: "OAUTH_INVALID_REQUEST",
  31. 5: "OAUTH_ERROR",
  32. }
  33. var UserServiceError_ErrorCode_value = map[string]int32{
  34. "OK": 0,
  35. "REDIRECT_URL_TOO_LONG": 1,
  36. "NOT_ALLOWED": 2,
  37. "OAUTH_INVALID_TOKEN": 3,
  38. "OAUTH_INVALID_REQUEST": 4,
  39. "OAUTH_ERROR": 5,
  40. }
  41. func (x UserServiceError_ErrorCode) Enum() *UserServiceError_ErrorCode {
  42. p := new(UserServiceError_ErrorCode)
  43. *p = x
  44. return p
  45. }
  46. func (x UserServiceError_ErrorCode) String() string {
  47. return proto.EnumName(UserServiceError_ErrorCode_name, int32(x))
  48. }
  49. func (x *UserServiceError_ErrorCode) UnmarshalJSON(data []byte) error {
  50. value, err := proto.UnmarshalJSONEnum(UserServiceError_ErrorCode_value, data, "UserServiceError_ErrorCode")
  51. if err != nil {
  52. return err
  53. }
  54. *x = UserServiceError_ErrorCode(value)
  55. return nil
  56. }
  57. func (UserServiceError_ErrorCode) EnumDescriptor() ([]byte, []int) {
  58. return fileDescriptor_user_service_faa685423dd20b0a, []int{0, 0}
  59. }
  60. type UserServiceError struct {
  61. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  62. XXX_unrecognized []byte `json:"-"`
  63. XXX_sizecache int32 `json:"-"`
  64. }
  65. func (m *UserServiceError) Reset() { *m = UserServiceError{} }
  66. func (m *UserServiceError) String() string { return proto.CompactTextString(m) }
  67. func (*UserServiceError) ProtoMessage() {}
  68. func (*UserServiceError) Descriptor() ([]byte, []int) {
  69. return fileDescriptor_user_service_faa685423dd20b0a, []int{0}
  70. }
  71. func (m *UserServiceError) XXX_Unmarshal(b []byte) error {
  72. return xxx_messageInfo_UserServiceError.Unmarshal(m, b)
  73. }
  74. func (m *UserServiceError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  75. return xxx_messageInfo_UserServiceError.Marshal(b, m, deterministic)
  76. }
  77. func (dst *UserServiceError) XXX_Merge(src proto.Message) {
  78. xxx_messageInfo_UserServiceError.Merge(dst, src)
  79. }
  80. func (m *UserServiceError) XXX_Size() int {
  81. return xxx_messageInfo_UserServiceError.Size(m)
  82. }
  83. func (m *UserServiceError) XXX_DiscardUnknown() {
  84. xxx_messageInfo_UserServiceError.DiscardUnknown(m)
  85. }
  86. var xxx_messageInfo_UserServiceError proto.InternalMessageInfo
  87. type CreateLoginURLRequest struct {
  88. DestinationUrl *string `protobuf:"bytes,1,req,name=destination_url,json=destinationUrl" json:"destination_url,omitempty"`
  89. AuthDomain *string `protobuf:"bytes,2,opt,name=auth_domain,json=authDomain" json:"auth_domain,omitempty"`
  90. FederatedIdentity *string `protobuf:"bytes,3,opt,name=federated_identity,json=federatedIdentity,def=" json:"federated_identity,omitempty"`
  91. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  92. XXX_unrecognized []byte `json:"-"`
  93. XXX_sizecache int32 `json:"-"`
  94. }
  95. func (m *CreateLoginURLRequest) Reset() { *m = CreateLoginURLRequest{} }
  96. func (m *CreateLoginURLRequest) String() string { return proto.CompactTextString(m) }
  97. func (*CreateLoginURLRequest) ProtoMessage() {}
  98. func (*CreateLoginURLRequest) Descriptor() ([]byte, []int) {
  99. return fileDescriptor_user_service_faa685423dd20b0a, []int{1}
  100. }
  101. func (m *CreateLoginURLRequest) XXX_Unmarshal(b []byte) error {
  102. return xxx_messageInfo_CreateLoginURLRequest.Unmarshal(m, b)
  103. }
  104. func (m *CreateLoginURLRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  105. return xxx_messageInfo_CreateLoginURLRequest.Marshal(b, m, deterministic)
  106. }
  107. func (dst *CreateLoginURLRequest) XXX_Merge(src proto.Message) {
  108. xxx_messageInfo_CreateLoginURLRequest.Merge(dst, src)
  109. }
  110. func (m *CreateLoginURLRequest) XXX_Size() int {
  111. return xxx_messageInfo_CreateLoginURLRequest.Size(m)
  112. }
  113. func (m *CreateLoginURLRequest) XXX_DiscardUnknown() {
  114. xxx_messageInfo_CreateLoginURLRequest.DiscardUnknown(m)
  115. }
  116. var xxx_messageInfo_CreateLoginURLRequest proto.InternalMessageInfo
  117. func (m *CreateLoginURLRequest) GetDestinationUrl() string {
  118. if m != nil && m.DestinationUrl != nil {
  119. return *m.DestinationUrl
  120. }
  121. return ""
  122. }
  123. func (m *CreateLoginURLRequest) GetAuthDomain() string {
  124. if m != nil && m.AuthDomain != nil {
  125. return *m.AuthDomain
  126. }
  127. return ""
  128. }
  129. func (m *CreateLoginURLRequest) GetFederatedIdentity() string {
  130. if m != nil && m.FederatedIdentity != nil {
  131. return *m.FederatedIdentity
  132. }
  133. return ""
  134. }
  135. type CreateLoginURLResponse struct {
  136. LoginUrl *string `protobuf:"bytes,1,req,name=login_url,json=loginUrl" json:"login_url,omitempty"`
  137. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  138. XXX_unrecognized []byte `json:"-"`
  139. XXX_sizecache int32 `json:"-"`
  140. }
  141. func (m *CreateLoginURLResponse) Reset() { *m = CreateLoginURLResponse{} }
  142. func (m *CreateLoginURLResponse) String() string { return proto.CompactTextString(m) }
  143. func (*CreateLoginURLResponse) ProtoMessage() {}
  144. func (*CreateLoginURLResponse) Descriptor() ([]byte, []int) {
  145. return fileDescriptor_user_service_faa685423dd20b0a, []int{2}
  146. }
  147. func (m *CreateLoginURLResponse) XXX_Unmarshal(b []byte) error {
  148. return xxx_messageInfo_CreateLoginURLResponse.Unmarshal(m, b)
  149. }
  150. func (m *CreateLoginURLResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  151. return xxx_messageInfo_CreateLoginURLResponse.Marshal(b, m, deterministic)
  152. }
  153. func (dst *CreateLoginURLResponse) XXX_Merge(src proto.Message) {
  154. xxx_messageInfo_CreateLoginURLResponse.Merge(dst, src)
  155. }
  156. func (m *CreateLoginURLResponse) XXX_Size() int {
  157. return xxx_messageInfo_CreateLoginURLResponse.Size(m)
  158. }
  159. func (m *CreateLoginURLResponse) XXX_DiscardUnknown() {
  160. xxx_messageInfo_CreateLoginURLResponse.DiscardUnknown(m)
  161. }
  162. var xxx_messageInfo_CreateLoginURLResponse proto.InternalMessageInfo
  163. func (m *CreateLoginURLResponse) GetLoginUrl() string {
  164. if m != nil && m.LoginUrl != nil {
  165. return *m.LoginUrl
  166. }
  167. return ""
  168. }
  169. type CreateLogoutURLRequest struct {
  170. DestinationUrl *string `protobuf:"bytes,1,req,name=destination_url,json=destinationUrl" json:"destination_url,omitempty"`
  171. AuthDomain *string `protobuf:"bytes,2,opt,name=auth_domain,json=authDomain" json:"auth_domain,omitempty"`
  172. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  173. XXX_unrecognized []byte `json:"-"`
  174. XXX_sizecache int32 `json:"-"`
  175. }
  176. func (m *CreateLogoutURLRequest) Reset() { *m = CreateLogoutURLRequest{} }
  177. func (m *CreateLogoutURLRequest) String() string { return proto.CompactTextString(m) }
  178. func (*CreateLogoutURLRequest) ProtoMessage() {}
  179. func (*CreateLogoutURLRequest) Descriptor() ([]byte, []int) {
  180. return fileDescriptor_user_service_faa685423dd20b0a, []int{3}
  181. }
  182. func (m *CreateLogoutURLRequest) XXX_Unmarshal(b []byte) error {
  183. return xxx_messageInfo_CreateLogoutURLRequest.Unmarshal(m, b)
  184. }
  185. func (m *CreateLogoutURLRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  186. return xxx_messageInfo_CreateLogoutURLRequest.Marshal(b, m, deterministic)
  187. }
  188. func (dst *CreateLogoutURLRequest) XXX_Merge(src proto.Message) {
  189. xxx_messageInfo_CreateLogoutURLRequest.Merge(dst, src)
  190. }
  191. func (m *CreateLogoutURLRequest) XXX_Size() int {
  192. return xxx_messageInfo_CreateLogoutURLRequest.Size(m)
  193. }
  194. func (m *CreateLogoutURLRequest) XXX_DiscardUnknown() {
  195. xxx_messageInfo_CreateLogoutURLRequest.DiscardUnknown(m)
  196. }
  197. var xxx_messageInfo_CreateLogoutURLRequest proto.InternalMessageInfo
  198. func (m *CreateLogoutURLRequest) GetDestinationUrl() string {
  199. if m != nil && m.DestinationUrl != nil {
  200. return *m.DestinationUrl
  201. }
  202. return ""
  203. }
  204. func (m *CreateLogoutURLRequest) GetAuthDomain() string {
  205. if m != nil && m.AuthDomain != nil {
  206. return *m.AuthDomain
  207. }
  208. return ""
  209. }
  210. type CreateLogoutURLResponse struct {
  211. LogoutUrl *string `protobuf:"bytes,1,req,name=logout_url,json=logoutUrl" json:"logout_url,omitempty"`
  212. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  213. XXX_unrecognized []byte `json:"-"`
  214. XXX_sizecache int32 `json:"-"`
  215. }
  216. func (m *CreateLogoutURLResponse) Reset() { *m = CreateLogoutURLResponse{} }
  217. func (m *CreateLogoutURLResponse) String() string { return proto.CompactTextString(m) }
  218. func (*CreateLogoutURLResponse) ProtoMessage() {}
  219. func (*CreateLogoutURLResponse) Descriptor() ([]byte, []int) {
  220. return fileDescriptor_user_service_faa685423dd20b0a, []int{4}
  221. }
  222. func (m *CreateLogoutURLResponse) XXX_Unmarshal(b []byte) error {
  223. return xxx_messageInfo_CreateLogoutURLResponse.Unmarshal(m, b)
  224. }
  225. func (m *CreateLogoutURLResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  226. return xxx_messageInfo_CreateLogoutURLResponse.Marshal(b, m, deterministic)
  227. }
  228. func (dst *CreateLogoutURLResponse) XXX_Merge(src proto.Message) {
  229. xxx_messageInfo_CreateLogoutURLResponse.Merge(dst, src)
  230. }
  231. func (m *CreateLogoutURLResponse) XXX_Size() int {
  232. return xxx_messageInfo_CreateLogoutURLResponse.Size(m)
  233. }
  234. func (m *CreateLogoutURLResponse) XXX_DiscardUnknown() {
  235. xxx_messageInfo_CreateLogoutURLResponse.DiscardUnknown(m)
  236. }
  237. var xxx_messageInfo_CreateLogoutURLResponse proto.InternalMessageInfo
  238. func (m *CreateLogoutURLResponse) GetLogoutUrl() string {
  239. if m != nil && m.LogoutUrl != nil {
  240. return *m.LogoutUrl
  241. }
  242. return ""
  243. }
  244. type GetOAuthUserRequest struct {
  245. Scope *string `protobuf:"bytes,1,opt,name=scope" json:"scope,omitempty"`
  246. Scopes []string `protobuf:"bytes,2,rep,name=scopes" json:"scopes,omitempty"`
  247. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  248. XXX_unrecognized []byte `json:"-"`
  249. XXX_sizecache int32 `json:"-"`
  250. }
  251. func (m *GetOAuthUserRequest) Reset() { *m = GetOAuthUserRequest{} }
  252. func (m *GetOAuthUserRequest) String() string { return proto.CompactTextString(m) }
  253. func (*GetOAuthUserRequest) ProtoMessage() {}
  254. func (*GetOAuthUserRequest) Descriptor() ([]byte, []int) {
  255. return fileDescriptor_user_service_faa685423dd20b0a, []int{5}
  256. }
  257. func (m *GetOAuthUserRequest) XXX_Unmarshal(b []byte) error {
  258. return xxx_messageInfo_GetOAuthUserRequest.Unmarshal(m, b)
  259. }
  260. func (m *GetOAuthUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  261. return xxx_messageInfo_GetOAuthUserRequest.Marshal(b, m, deterministic)
  262. }
  263. func (dst *GetOAuthUserRequest) XXX_Merge(src proto.Message) {
  264. xxx_messageInfo_GetOAuthUserRequest.Merge(dst, src)
  265. }
  266. func (m *GetOAuthUserRequest) XXX_Size() int {
  267. return xxx_messageInfo_GetOAuthUserRequest.Size(m)
  268. }
  269. func (m *GetOAuthUserRequest) XXX_DiscardUnknown() {
  270. xxx_messageInfo_GetOAuthUserRequest.DiscardUnknown(m)
  271. }
  272. var xxx_messageInfo_GetOAuthUserRequest proto.InternalMessageInfo
  273. func (m *GetOAuthUserRequest) GetScope() string {
  274. if m != nil && m.Scope != nil {
  275. return *m.Scope
  276. }
  277. return ""
  278. }
  279. func (m *GetOAuthUserRequest) GetScopes() []string {
  280. if m != nil {
  281. return m.Scopes
  282. }
  283. return nil
  284. }
  285. type GetOAuthUserResponse struct {
  286. Email *string `protobuf:"bytes,1,req,name=email" json:"email,omitempty"`
  287. UserId *string `protobuf:"bytes,2,req,name=user_id,json=userId" json:"user_id,omitempty"`
  288. AuthDomain *string `protobuf:"bytes,3,req,name=auth_domain,json=authDomain" json:"auth_domain,omitempty"`
  289. UserOrganization *string `protobuf:"bytes,4,opt,name=user_organization,json=userOrganization,def=" json:"user_organization,omitempty"`
  290. IsAdmin *bool `protobuf:"varint,5,opt,name=is_admin,json=isAdmin,def=0" json:"is_admin,omitempty"`
  291. ClientId *string `protobuf:"bytes,6,opt,name=client_id,json=clientId,def=" json:"client_id,omitempty"`
  292. Scopes []string `protobuf:"bytes,7,rep,name=scopes" json:"scopes,omitempty"`
  293. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  294. XXX_unrecognized []byte `json:"-"`
  295. XXX_sizecache int32 `json:"-"`
  296. }
  297. func (m *GetOAuthUserResponse) Reset() { *m = GetOAuthUserResponse{} }
  298. func (m *GetOAuthUserResponse) String() string { return proto.CompactTextString(m) }
  299. func (*GetOAuthUserResponse) ProtoMessage() {}
  300. func (*GetOAuthUserResponse) Descriptor() ([]byte, []int) {
  301. return fileDescriptor_user_service_faa685423dd20b0a, []int{6}
  302. }
  303. func (m *GetOAuthUserResponse) XXX_Unmarshal(b []byte) error {
  304. return xxx_messageInfo_GetOAuthUserResponse.Unmarshal(m, b)
  305. }
  306. func (m *GetOAuthUserResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  307. return xxx_messageInfo_GetOAuthUserResponse.Marshal(b, m, deterministic)
  308. }
  309. func (dst *GetOAuthUserResponse) XXX_Merge(src proto.Message) {
  310. xxx_messageInfo_GetOAuthUserResponse.Merge(dst, src)
  311. }
  312. func (m *GetOAuthUserResponse) XXX_Size() int {
  313. return xxx_messageInfo_GetOAuthUserResponse.Size(m)
  314. }
  315. func (m *GetOAuthUserResponse) XXX_DiscardUnknown() {
  316. xxx_messageInfo_GetOAuthUserResponse.DiscardUnknown(m)
  317. }
  318. var xxx_messageInfo_GetOAuthUserResponse proto.InternalMessageInfo
  319. const Default_GetOAuthUserResponse_IsAdmin bool = false
  320. func (m *GetOAuthUserResponse) GetEmail() string {
  321. if m != nil && m.Email != nil {
  322. return *m.Email
  323. }
  324. return ""
  325. }
  326. func (m *GetOAuthUserResponse) GetUserId() string {
  327. if m != nil && m.UserId != nil {
  328. return *m.UserId
  329. }
  330. return ""
  331. }
  332. func (m *GetOAuthUserResponse) GetAuthDomain() string {
  333. if m != nil && m.AuthDomain != nil {
  334. return *m.AuthDomain
  335. }
  336. return ""
  337. }
  338. func (m *GetOAuthUserResponse) GetUserOrganization() string {
  339. if m != nil && m.UserOrganization != nil {
  340. return *m.UserOrganization
  341. }
  342. return ""
  343. }
  344. func (m *GetOAuthUserResponse) GetIsAdmin() bool {
  345. if m != nil && m.IsAdmin != nil {
  346. return *m.IsAdmin
  347. }
  348. return Default_GetOAuthUserResponse_IsAdmin
  349. }
  350. func (m *GetOAuthUserResponse) GetClientId() string {
  351. if m != nil && m.ClientId != nil {
  352. return *m.ClientId
  353. }
  354. return ""
  355. }
  356. func (m *GetOAuthUserResponse) GetScopes() []string {
  357. if m != nil {
  358. return m.Scopes
  359. }
  360. return nil
  361. }
  362. type CheckOAuthSignatureRequest struct {
  363. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  364. XXX_unrecognized []byte `json:"-"`
  365. XXX_sizecache int32 `json:"-"`
  366. }
  367. func (m *CheckOAuthSignatureRequest) Reset() { *m = CheckOAuthSignatureRequest{} }
  368. func (m *CheckOAuthSignatureRequest) String() string { return proto.CompactTextString(m) }
  369. func (*CheckOAuthSignatureRequest) ProtoMessage() {}
  370. func (*CheckOAuthSignatureRequest) Descriptor() ([]byte, []int) {
  371. return fileDescriptor_user_service_faa685423dd20b0a, []int{7}
  372. }
  373. func (m *CheckOAuthSignatureRequest) XXX_Unmarshal(b []byte) error {
  374. return xxx_messageInfo_CheckOAuthSignatureRequest.Unmarshal(m, b)
  375. }
  376. func (m *CheckOAuthSignatureRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  377. return xxx_messageInfo_CheckOAuthSignatureRequest.Marshal(b, m, deterministic)
  378. }
  379. func (dst *CheckOAuthSignatureRequest) XXX_Merge(src proto.Message) {
  380. xxx_messageInfo_CheckOAuthSignatureRequest.Merge(dst, src)
  381. }
  382. func (m *CheckOAuthSignatureRequest) XXX_Size() int {
  383. return xxx_messageInfo_CheckOAuthSignatureRequest.Size(m)
  384. }
  385. func (m *CheckOAuthSignatureRequest) XXX_DiscardUnknown() {
  386. xxx_messageInfo_CheckOAuthSignatureRequest.DiscardUnknown(m)
  387. }
  388. var xxx_messageInfo_CheckOAuthSignatureRequest proto.InternalMessageInfo
  389. type CheckOAuthSignatureResponse struct {
  390. OauthConsumerKey *string `protobuf:"bytes,1,req,name=oauth_consumer_key,json=oauthConsumerKey" json:"oauth_consumer_key,omitempty"`
  391. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  392. XXX_unrecognized []byte `json:"-"`
  393. XXX_sizecache int32 `json:"-"`
  394. }
  395. func (m *CheckOAuthSignatureResponse) Reset() { *m = CheckOAuthSignatureResponse{} }
  396. func (m *CheckOAuthSignatureResponse) String() string { return proto.CompactTextString(m) }
  397. func (*CheckOAuthSignatureResponse) ProtoMessage() {}
  398. func (*CheckOAuthSignatureResponse) Descriptor() ([]byte, []int) {
  399. return fileDescriptor_user_service_faa685423dd20b0a, []int{8}
  400. }
  401. func (m *CheckOAuthSignatureResponse) XXX_Unmarshal(b []byte) error {
  402. return xxx_messageInfo_CheckOAuthSignatureResponse.Unmarshal(m, b)
  403. }
  404. func (m *CheckOAuthSignatureResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  405. return xxx_messageInfo_CheckOAuthSignatureResponse.Marshal(b, m, deterministic)
  406. }
  407. func (dst *CheckOAuthSignatureResponse) XXX_Merge(src proto.Message) {
  408. xxx_messageInfo_CheckOAuthSignatureResponse.Merge(dst, src)
  409. }
  410. func (m *CheckOAuthSignatureResponse) XXX_Size() int {
  411. return xxx_messageInfo_CheckOAuthSignatureResponse.Size(m)
  412. }
  413. func (m *CheckOAuthSignatureResponse) XXX_DiscardUnknown() {
  414. xxx_messageInfo_CheckOAuthSignatureResponse.DiscardUnknown(m)
  415. }
  416. var xxx_messageInfo_CheckOAuthSignatureResponse proto.InternalMessageInfo
  417. func (m *CheckOAuthSignatureResponse) GetOauthConsumerKey() string {
  418. if m != nil && m.OauthConsumerKey != nil {
  419. return *m.OauthConsumerKey
  420. }
  421. return ""
  422. }
  423. func init() {
  424. proto.RegisterType((*UserServiceError)(nil), "appengine.UserServiceError")
  425. proto.RegisterType((*CreateLoginURLRequest)(nil), "appengine.CreateLoginURLRequest")
  426. proto.RegisterType((*CreateLoginURLResponse)(nil), "appengine.CreateLoginURLResponse")
  427. proto.RegisterType((*CreateLogoutURLRequest)(nil), "appengine.CreateLogoutURLRequest")
  428. proto.RegisterType((*CreateLogoutURLResponse)(nil), "appengine.CreateLogoutURLResponse")
  429. proto.RegisterType((*GetOAuthUserRequest)(nil), "appengine.GetOAuthUserRequest")
  430. proto.RegisterType((*GetOAuthUserResponse)(nil), "appengine.GetOAuthUserResponse")
  431. proto.RegisterType((*CheckOAuthSignatureRequest)(nil), "appengine.CheckOAuthSignatureRequest")
  432. proto.RegisterType((*CheckOAuthSignatureResponse)(nil), "appengine.CheckOAuthSignatureResponse")
  433. }
  434. func init() {
  435. proto.RegisterFile("google.golang.org/appengine/internal/user/user_service.proto", fileDescriptor_user_service_faa685423dd20b0a)
  436. }
  437. var fileDescriptor_user_service_faa685423dd20b0a = []byte{
  438. // 573 bytes of a gzipped FileDescriptorProto
  439. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x52, 0x4d, 0x6f, 0xdb, 0x38,
  440. 0x10, 0x8d, 0xec, 0xd8, 0xb1, 0x26, 0xc0, 0x46, 0x61, 0xbe, 0xb4, 0x9b, 0x0d, 0xd6, 0xd0, 0x65,
  441. 0x7d, 0x68, 0xe3, 0x53, 0x81, 0x22, 0xe8, 0xc5, 0xb5, 0x85, 0xd4, 0xb0, 0x60, 0xa1, 0x8c, 0xd5,
  442. 0x02, 0xbd, 0x08, 0xac, 0x35, 0x51, 0x88, 0xc8, 0xa4, 0x4b, 0x52, 0x05, 0xd2, 0x73, 0x7f, 0x41,
  443. 0x6f, 0xfd, 0x93, 0xfd, 0x0d, 0x85, 0x68, 0x25, 0x50, 0xd2, 0x5e, 0x7b, 0x11, 0x34, 0xef, 0x0d,
  444. 0xdf, 0xbc, 0x37, 0x24, 0xbc, 0xca, 0xa5, 0xcc, 0x0b, 0x3c, 0xcf, 0x65, 0xc1, 0x44, 0x7e, 0x2e,
  445. 0x55, 0x3e, 0x64, 0xeb, 0x35, 0x8a, 0x9c, 0x0b, 0x1c, 0x72, 0x61, 0x50, 0x09, 0x56, 0x0c, 0x4b,
  446. 0x8d, 0xca, 0x7e, 0x52, 0x8d, 0xea, 0x33, 0x5f, 0xe2, 0xf9, 0x5a, 0x49, 0x23, 0x89, 0xfb, 0xd0,
  447. 0x1b, 0x7c, 0x77, 0xc0, 0x4b, 0x34, 0xaa, 0xab, 0x4d, 0x43, 0xa8, 0x94, 0x54, 0xc1, 0x57, 0x07,
  448. 0x5c, 0xfb, 0x37, 0x96, 0x19, 0x92, 0x2e, 0xb4, 0xe2, 0x99, 0xb7, 0x45, 0xfe, 0x86, 0x23, 0x1a,
  449. 0x4e, 0xa6, 0x34, 0x1c, 0x2f, 0xd2, 0x84, 0x46, 0xe9, 0x22, 0x8e, 0xd3, 0x28, 0x9e, 0x5f, 0x7a,
  450. 0x0e, 0xd9, 0x83, 0xdd, 0x79, 0xbc, 0x48, 0x47, 0x51, 0x14, 0xbf, 0x0f, 0x27, 0x5e, 0x8b, 0x9c,
  451. 0xc0, 0x41, 0x3c, 0x4a, 0x16, 0x6f, 0xd2, 0xe9, 0xfc, 0xdd, 0x28, 0x9a, 0x4e, 0xd2, 0x45, 0x3c,
  452. 0x0b, 0xe7, 0x5e, 0xbb, 0x12, 0x79, 0x4c, 0xd0, 0xf0, 0x6d, 0x12, 0x5e, 0x2d, 0xbc, 0xed, 0x4a,
  453. 0x64, 0x43, 0x85, 0x94, 0xc6, 0xd4, 0xeb, 0x04, 0xdf, 0x1c, 0x38, 0x1a, 0x2b, 0x64, 0x06, 0x23,
  454. 0x99, 0x73, 0x91, 0xd0, 0x88, 0xe2, 0xa7, 0x12, 0xb5, 0x21, 0xff, 0xc3, 0x5e, 0x86, 0xda, 0x70,
  455. 0xc1, 0x0c, 0x97, 0x22, 0x2d, 0x55, 0xe1, 0x3b, 0xfd, 0xd6, 0xc0, 0xa5, 0x7f, 0x35, 0xe0, 0x44,
  456. 0x15, 0xe4, 0x3f, 0xd8, 0x65, 0xa5, 0xb9, 0x49, 0x33, 0xb9, 0x62, 0x5c, 0xf8, 0xad, 0xbe, 0x33,
  457. 0x70, 0x29, 0x54, 0xd0, 0xc4, 0x22, 0x64, 0x08, 0xe4, 0x1a, 0x33, 0x54, 0xcc, 0x60, 0x96, 0xf2,
  458. 0x0c, 0x85, 0xe1, 0xe6, 0xce, 0x6f, 0x57, 0x7d, 0x17, 0x5b, 0x74, 0xff, 0x81, 0x9b, 0xd6, 0x54,
  459. 0xf0, 0x02, 0x8e, 0x9f, 0x7a, 0xd2, 0x6b, 0x29, 0x34, 0x92, 0x53, 0x70, 0x8b, 0x0a, 0x6b, 0xd8,
  460. 0xe9, 0x59, 0x20, 0x51, 0x45, 0xf0, 0xb1, 0x71, 0x4c, 0x96, 0xe6, 0x4f, 0x64, 0x09, 0x5e, 0xc2,
  461. 0xc9, 0x2f, 0x33, 0x6a, 0x6f, 0x67, 0x00, 0x85, 0x05, 0x1b, 0xfa, 0xee, 0x06, 0xa9, 0xdc, 0x8d,
  462. 0xe1, 0xe0, 0x12, 0x4d, 0x3c, 0x2a, 0xcd, 0x4d, 0xf5, 0x18, 0xee, 0xad, 0x1d, 0x42, 0x47, 0x2f,
  463. 0xe5, 0x1a, 0x7d, 0xc7, 0xce, 0xda, 0x14, 0xe4, 0x18, 0xba, 0xf6, 0x47, 0xfb, 0xad, 0x7e, 0x7b,
  464. 0xe0, 0xd2, 0xba, 0x0a, 0x7e, 0x38, 0x70, 0xf8, 0x58, 0xa5, 0x1e, 0x7e, 0x08, 0x1d, 0x5c, 0x31,
  465. 0x7e, 0x3f, 0x77, 0x53, 0x90, 0x13, 0xd8, 0xb1, 0x4f, 0x93, 0x67, 0x7e, 0xcb, 0xe2, 0xdd, 0xaa,
  466. 0x9c, 0x66, 0x4f, 0x73, 0xb6, 0x2d, 0xd9, 0xbc, 0xb3, 0xe7, 0xb0, 0x6f, 0x4f, 0x4a, 0x95, 0x33,
  467. 0xc1, 0xbf, 0xd8, 0x05, 0xf9, 0xdb, 0xf5, 0x95, 0x79, 0x15, 0x15, 0x37, 0x18, 0xd2, 0x87, 0x1e,
  468. 0xd7, 0x29, 0xcb, 0x56, 0x5c, 0xf8, 0x9d, 0xbe, 0x33, 0xe8, 0x5d, 0x74, 0xae, 0x59, 0xa1, 0x91,
  469. 0xee, 0x70, 0x3d, 0xaa, 0x50, 0x72, 0x06, 0xee, 0xb2, 0xe0, 0x28, 0x4c, 0x65, 0xa6, 0x5b, 0x0b,
  470. 0xf5, 0x36, 0xd0, 0x34, 0x6b, 0x04, 0xde, 0x79, 0x14, 0xf8, 0x5f, 0xf8, 0x67, 0x7c, 0x83, 0xcb,
  471. 0x5b, 0x9b, 0xf8, 0x8a, 0xe7, 0x82, 0x99, 0x52, 0x61, 0xbd, 0xbc, 0x60, 0x06, 0xa7, 0xbf, 0x65,
  472. 0xeb, 0xa5, 0x3c, 0x03, 0x22, 0x6d, 0xcc, 0xa5, 0x14, 0xba, 0x5c, 0xa1, 0x4a, 0x6f, 0xf1, 0xae,
  473. 0xde, 0x90, 0x67, 0x99, 0x71, 0x4d, 0xcc, 0xf0, 0xee, 0x75, 0xf7, 0xc3, 0x76, 0x95, 0xeb, 0x67,
  474. 0x00, 0x00, 0x00, 0xff, 0xff, 0x58, 0x04, 0x53, 0xcc, 0xf8, 0x03, 0x00, 0x00,
  475. }