當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_Service_DeveloperGarden_SecurityTokenServer_Cache類代碼示例

本文整理匯總了PHP中Zend_Service_DeveloperGarden_SecurityTokenServer_Cache的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Service_DeveloperGarden_SecurityTokenServer_Cache類的具體用法?PHP Zend_Service_DeveloperGarden_SecurityTokenServer_Cache怎麽用?PHP Zend_Service_DeveloperGarden_SecurityTokenServer_Cache使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Zend_Service_DeveloperGarden_SecurityTokenServer_Cache類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getTokens

 /**
  * returns the fetched token from token server
  *
  * @return Zend_Service_DeveloperGarden_Response_SecurityTokenServer_GetTokensResponse
  */
 public function getTokens()
 {
     $token = Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache('getTokens');
     if ($token === null || !$token->isValid()) {
         $token = $this->getSoapClient()->getTokens(array('serviceId' => $this->_serviceAuthId));
         Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setTokenToCache('getTokens', $token);
     }
     return $token;
 }
開發者ID:heiglandreas,項目名稱:zf2,代碼行數:14,代碼來源:SecurityTokenServer.php

示例2: testTokenCacheGetTokenFromCacheWithZendCacheAndCacheHit

 public function testTokenCacheGetTokenFromCacheWithZendCacheAndCacheHit()
 {
     $tokensAr = array('securityToken', 'getTokens');
     $cache = Zend_Cache::factory('Core', 'File', array('automatic_serialization' => true), array());
     $this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setCache($cache));
     $this->assertType('Zend_Cache_Core', Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getCache());
     Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::resetTokenCache();
     Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::clearCache();
     $tokens = $this->service->getTokens();
     $this->assertType('Zend_Service_DeveloperGarden_Response_SecurityTokenServer_GetTokensResponse', $tokens);
     $this->assertType('Zend_Service_DeveloperGarden_Response_SecurityTokenServer_SecurityTokenResponse', $tokens->securityToken);
     $this->assertNotNull('Zend_Service_DeveloperGarden_Response_SecurityTokenServer_SecurityTokenResponse', $tokens->getSecurityToken());
     foreach ($tokensAr as $v) {
         $this->assertNotNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache($v));
         $this->assertNotNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache($v));
     }
 }
開發者ID:alab1001101,項目名稱:zf2,代碼行數:17,代碼來源:SecurityTokenServerTest.php

示例3: testTokenCacheGetTokenFromCacheWithZendCache

 public function testTokenCacheGetTokenFromCacheWithZendCache()
 {
     $tokens = array('securityToken', 'getTokens');
     // require_once 'Zend/Cache.php';
     $cache = Zend_Cache::factory('Core', 'File', array(), array());
     $this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setCache($cache));
     $this->assertType('Zend_Cache_Core', Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getCache());
     Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::resetTokenCache();
     Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::clearCache();
     foreach ($tokens as $v) {
         $this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache($v));
     }
 }
開發者ID:netvlies,項目名稱:zf,代碼行數:13,代碼來源:OfflineSecurityTokenServerTest.php

示例4: testGetClientOptionsWithWsdlCache

 public function testGetClientOptionsWithWsdlCache()
 {
     $this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setWsdlCache(WSDL_CACHE_BOTH));
     $options = $this->service->getClientOptions();
     $this->assertType('array', $options);
     $this->assertArrayHasKey('cache_wsdl', $options);
     $this->assertEquals(WSDL_CACHE_BOTH, $options['cache_wsdl']);
 }
開發者ID:rafalwrzeszcz,項目名稱:zf2,代碼行數:8,代碼來源:OfflineClientTest.php

示例5: getClientOptions

 /**
  * returns an array with configured options for this client
  *
  * @return array
  */
 public function getClientOptions()
 {
     $options = array('soap_version' => SOAP_1_1);
     if (!empty($this->_classMap)) {
         $options['classmap'] = $this->_classMap;
     }
     $wsdlCache = Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getWsdlCache();
     if ($wsdlCache !== null) {
         $options['cache_wsdl'] = $wsdlCache;
     }
     return $options;
 }
開發者ID:heiglandreas,項目名稱:zf2,代碼行數:17,代碼來源:AbstractClient.php

示例6: testTokenCacheGetTokenFromCacheWithZendCache

 public function testTokenCacheGetTokenFromCacheWithZendCache()
 {
     $tokens = array('securityToken', 'getTokens');
     $cache = Zend\Cache\Cache::factory('Core', 'File', array(), array());
     $this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setCache($cache));
     $this->assertInstanceOf('Zend\\Cache\\Frontend\\Core', Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getCache());
     Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::resetTokenCache();
     Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::clearCache();
     foreach ($tokens as $v) {
         $this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache($v));
     }
 }
開發者ID:robertodormepoco,項目名稱:zf2,代碼行數:12,代碼來源:OfflineSecurityTokenServerTest.php

示例7: testGetClientOptionsWithWsdlCache

 public function testGetClientOptionsWithWsdlCache()
 {
     if (!extension_loaded('soap')) {
         $this->markTestSkipped('SOAP extension is not loaded');
     }
     $this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setWsdlCache(WSDL_CACHE_BOTH));
     $options = $this->service->getClientOptions();
     $this->assertTrue(is_array($options));
     $this->assertArrayHasKey('cache_wsdl', $options);
     $this->assertEquals(WSDL_CACHE_BOTH, $options['cache_wsdl']);
 }
開發者ID:jsnshrmn,項目名稱:Suma,代碼行數:11,代碼來源:OfflineClientTest.php

示例8: setWsdlCache

 /**
  * Set a cache for wsdl file
  *
  * @param integer $cache
  * @return void
  */
 public static function setWsdlCache($cache = null)
 {
     self::$_wsdlCache = $cache;
 }
開發者ID:andrelsguerra,項目名稱:pequiambiental,代碼行數:10,代碼來源:Cache.php


注:本文中的Zend_Service_DeveloperGarden_SecurityTokenServer_Cache類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。