source: sandbox/2.4.1-3/prototype/library/oauth2/lib/IOAuth2GrantImplicit.php @ 6351

Revision 6351, 597 bytes checked in by gustavo, 12 years ago (diff)

Ticket #2768 - Melhorias na inserção de destinatários na criacao de mensagem

  • Property svn:executable set to *
Line 
1<?php
2
3/**
4 * Storage engines that support the "Implicit"
5 * grant type should implement this interface
6 *
7 * @author Dave Rochwerger <catch.dave@gmail.com>
8 * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-4.2
9 */
10interface IOAuth2GrantImplicit extends IOAuth2Storage {
11       
12        /**
13         * The Implicit grant type supports a response type of "token".
14         *
15         * @var string
16         * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-1.4.2
17         * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-4.2
18         */
19        const RESPONSE_TYPE_TOKEN = OAuth2::RESPONSE_TYPE_ACCESS_TOKEN;
20}
Note: See TracBrowser for help on using the repository browser.