[ Index ] |
PHP Cross Reference of vtigercrm-6.1.0 |
[Summary view] [Print] [Text view]
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 [email protected] so we can send you a copy immediately. 14 * 15 * @category Zend 16 * @package Zend_Oauth 17 * @copyright Copyright (c) 2005-2012 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 24593 2012-01-05 20:35:02Z matthew $ 20 */ 21 22 /** 23 * @category Zend 24 * @package Zend_Oauth 25 * @copyright Copyright (c) 2005-2012 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 76 public function setRealm($realm); 77 78 public function getRealm(); 79 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:08:37 2014 | Cross-referenced by PHPXref 0.7.1 |