Skip to content

Commit

Permalink
Merge branch 'aws-update' of http://github.com/farazdagi/zf2 into mer…
Browse files Browse the repository at this point in the history
…ges/farazdagi-aws

Conflicts:
	library/Zend/Service/Amazon/AbstractService.php
  • Loading branch information
weierophinney committed Nov 2, 2010
2 parents 7722417 + 2f2c7e5 commit d638836
Show file tree
Hide file tree
Showing 24 changed files with 2,586 additions and 115 deletions.
114 changes: 0 additions & 114 deletions library/Zend/Service/Amazon/AbstractService.php

This file was deleted.

87 changes: 87 additions & 0 deletions library/Zend/Service/Amazon/Authentication/Authentication.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Service_Amazon
* @subpackage Authentication
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

/**
* @namespace
*/
namespace Zend\Service\Amazon\Authentication;

/**
* @category Zend
* @package Zend_Service_Amazon
* @subpackage Authentication
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
abstract class Authentication
{
protected $_accessKey;
protected $_secretKey;
protected $_apiVersion;

/**
* Constructor
*
* @param string $accessKey
* @param string $secretKey
* @param string $apiVersion
* @return void
*/
public function __construct($accessKey, $secretKey, $apiVersion)
{
$this->setAccessKey($accessKey);
$this->setSecretKey($secretKey);
$this->setApiVersion($apiVersion);
}

/**
* Set access key
*
* @param string $accessKey
* @return void
*/
public function setAccessKey($accessKey)
{
$this->_accessKey = $accessKey;
}

/**
* Set secret key
*
* @param string $secretKey
* @return void
*/
public function setSecretKey($secretKey)
{
$this->_secretKey = $secretKey;
}

/**
* Set API version
*
* @param string $apiVersion
* @return void
*/
public function setApiVersion($apiVersion)
{
$this->_apiVersion = $apiVersion;
}
}
37 changes: 37 additions & 0 deletions library/Zend/Service/Amazon/Authentication/Exception.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Service_Amazon
* @subpackage Authentication
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

/**
* @namespace
*/
namespace Zend\Service\Amazon\Authentication;

/**
* @uses Zend\Service\Amazon\Exception
* @category Zend
* @package Zend_Service_Amazon
* @subpackage Authentication
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
interface Exception
extends \Zend\Service\Amazon\Exception
{}
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @uses \Zend\Service\Amazon\Authentication\Exception
* @category Zend
* @package Zend_Service_Amazon
* @subpackage Authentication
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

/**
* @namespace
*/
namespace Zend\Service\Amazon\Authentication\Exception;

/**
* @category Zend
* @package Zend_Service_Amazon
* @subpackage Authentication
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class InvalidArgumentException
extends \InvalidArgumentException
implements \Zend\Service\Amazon\Authentication\Exception
{}


Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @uses \Zend\Service\Amazon\Authentication\Exception
* @category Zend
* @package Zend_Service_Amazon
* @subpackage Authentication
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

/**
* @namespace
*/
namespace Zend\Service\Amazon\Authentication\Exception;

/**
* @category Zend
* @package Zend_Service_Amazon
* @subpackage Authentication
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class RuntimeException
extends \RuntimeException
implements \Zend\Service\Amazon\Authentication\Exception
{}


Loading

0 comments on commit d638836

Please sign in to comment.