|
1 <?php |
|
2 /** |
|
3 * Zend Framework |
|
4 * |
|
5 * LICENSE |
|
6 * |
|
7 * This source file is subject to the new BSD license that is bundled |
|
8 * with this package in the file LICENSE.txt. |
|
9 * It is also available through the world-wide-web at this URL: |
|
10 * http://framework.zend.com/license/new-bsd |
|
11 * If you did not receive a copy of the license and are unable to |
|
12 * obtain it through the world-wide-web, please send an email |
|
13 * to license@zend.com so we can send you a copy immediately. |
|
14 * |
|
15 * @category Zend |
|
16 * @package Zend_Oauth |
|
17 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
|
18 * @license http://framework.zend.com/license/new-bsd New BSD License |
|
19 * @version $Id: ConfigInterface.php 20217 2010-01-12 16:01:57Z matthew $ |
|
20 */ |
|
21 |
|
22 /** |
|
23 * @category Zend |
|
24 * @package Zend_Oauth |
|
25 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
|
26 * @license http://framework.zend.com/license/new-bsd New BSD License |
|
27 */ |
|
28 interface Zend_Oauth_Config_ConfigInterface |
|
29 { |
|
30 public function setOptions(array $options); |
|
31 |
|
32 public function setConsumerKey($key); |
|
33 |
|
34 public function getConsumerKey(); |
|
35 |
|
36 public function setConsumerSecret($secret); |
|
37 |
|
38 public function getConsumerSecret(); |
|
39 |
|
40 public function setSignatureMethod($method); |
|
41 |
|
42 public function getSignatureMethod(); |
|
43 |
|
44 public function setRequestScheme($scheme); |
|
45 |
|
46 public function getRequestScheme(); |
|
47 |
|
48 public function setVersion($version); |
|
49 |
|
50 public function getVersion(); |
|
51 |
|
52 public function setCallbackUrl($url); |
|
53 |
|
54 public function getCallbackUrl(); |
|
55 |
|
56 public function setRequestTokenUrl($url); |
|
57 |
|
58 public function getRequestTokenUrl(); |
|
59 |
|
60 public function setRequestMethod($method); |
|
61 |
|
62 public function getRequestMethod(); |
|
63 |
|
64 public function setAccessTokenUrl($url); |
|
65 |
|
66 public function getAccessTokenUrl(); |
|
67 |
|
68 public function setUserAuthorizationUrl($url); |
|
69 |
|
70 public function getUserAuthorizationUrl(); |
|
71 |
|
72 public function setToken(Zend_Oauth_Token $token); |
|
73 |
|
74 public function getToken(); |
|
75 } |