line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package CatalystX::OAuth2::Store; |
2
|
8
|
|
|
8
|
|
5676
|
use Moose::Role; |
|
8
|
|
|
|
|
26
|
|
|
8
|
|
|
|
|
86
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
# ABSTRACT: The API for oauth2 stores |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
requires qw( |
7
|
|
|
|
|
|
|
find_client |
8
|
|
|
|
|
|
|
client_endpoint |
9
|
|
|
|
|
|
|
create_client_code |
10
|
|
|
|
|
|
|
client_code_is_active |
11
|
|
|
|
|
|
|
activate_client_code |
12
|
|
|
|
|
|
|
deactivate_client_code |
13
|
|
|
|
|
|
|
create_access_token |
14
|
|
|
|
|
|
|
find_client_code |
15
|
|
|
|
|
|
|
verify_client_secret |
16
|
|
|
|
|
|
|
verify_client_token |
17
|
|
|
|
|
|
|
); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
__END__ |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=pod |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 NAME |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
CatalystX::OAuth2::Store - The API for oauth2 stores |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 VERSION |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
version 0.001006 |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 AUTHOR |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Eden Cardim <edencardim@gmail.com> |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
This software is copyright (c) 2017 by Suretec Systems Ltd. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
42
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=cut |