2016-07-20 15:55:45 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%%
|
2019-01-08 22:53:27 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2019 ProcessOne
|
2016-07-20 15:55:45 +02:00
|
|
|
%%%
|
|
|
|
%%% This program is free software; you can redistribute it and/or
|
|
|
|
%%% modify it under the terms of the GNU General Public License as
|
|
|
|
%%% published by the Free Software Foundation; either version 2 of the
|
|
|
|
%%% License, or (at your option) any later version.
|
|
|
|
%%%
|
|
|
|
%%% This program is distributed in the hope that it will be useful,
|
|
|
|
%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
%%% General Public License for more details.
|
|
|
|
%%%
|
|
|
|
%%% You should have received a copy of the GNU General Public License along
|
|
|
|
%%% with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
%%%
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-record(oauth_token, {
|
|
|
|
token = <<"">> :: binary() | '_',
|
|
|
|
us = {<<"">>, <<"">>} :: {binary(), binary()} | '_',
|
|
|
|
scope = [] :: [binary()] | '_',
|
2017-02-18 07:36:27 +01:00
|
|
|
expire :: integer() | '$1' | '_'
|
2016-07-20 15:55:45 +02:00
|
|
|
}).
|
2019-09-27 19:36:35 +02:00
|
|
|
|
|
|
|
-record(oauth_client, {
|
2019-10-03 05:18:07 +02:00
|
|
|
client_id = <<"">> :: binary() | '_',
|
|
|
|
client_name = <<"">> :: binary() | '_',
|
|
|
|
grant_type :: password | implicit | '_',
|
2019-09-27 19:36:35 +02:00
|
|
|
options :: [any()] | '_'
|
|
|
|
}).
|