Navigation Menu

Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
Rename Blob namespaces and change build files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdelrahman Elogeel authored and Abdelrahman Elogeel committed May 10, 2012
1 parent 878423e commit 69a8cc0
Show file tree
Hide file tree
Showing 121 changed files with 1,462 additions and 1,462 deletions.
10 changes: 5 additions & 5 deletions WindowsAzure/Blob/BlobService.php
Expand Up @@ -15,24 +15,24 @@
* PHP version 5 * PHP version 5
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob * @package WindowsAzure\Blob
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link http://pear.php.net/package/azure-sdk-for-php * @link http://pear.php.net/package/azure-sdk-for-php
*/ */


namespace WindowsAzure\Services\Blob; namespace WindowsAzure\Blob;
use WindowsAzure\Validate; use WindowsAzure\Validate;
use WindowsAzure\Core\Configuration; use WindowsAzure\Core\Configuration;
use WindowsAzure\Core\IServiceBuilder; use WindowsAzure\Core\IServiceBuilder;
use WindowsAzure\Resources; use WindowsAzure\Resources;


/** /**
* Factory for creating IBlob objects * Factory for creating IBlob objects.
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob * @package WindowsAzure\Blob
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
Expand All @@ -47,7 +47,7 @@ class BlobService
* @param WindowsAzure\Core\Configuration $config The config object. * @param WindowsAzure\Core\Configuration $config The config object.
* @param WindowsAzure\Core\IServicesBuilder $builder The builder object. * @param WindowsAzure\Core\IServicesBuilder $builder The builder object.
* *
* @return WindowsAzure\Services\Blob\IBlob * @return WindowsAzure\Blob\Internal\IBlob
*/ */
public static function create($config, $builder = null) public static function create($config, $builder = null)
{ {
Expand Down
6 changes: 3 additions & 3 deletions WindowsAzure/Blob/BlobSettings.php
Expand Up @@ -15,20 +15,20 @@
* PHP version 5 * PHP version 5
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob * @package WindowsAzure\Blob
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link http://pear.php.net/package/azure-sdk-for-php * @link http://pear.php.net/package/azure-sdk-for-php
*/ */


namespace WindowsAzure\Services\Blob; namespace WindowsAzure\Blob;


/** /**
* Basic Blob configuration elements. * Basic Blob configuration elements.
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob * @package WindowsAzure\Blob
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
Expand Down
97 changes: 49 additions & 48 deletions WindowsAzure/Blob/Internal/BlobRestProxy.php
Expand Up @@ -15,68 +15,69 @@
* PHP version 5 * PHP version 5
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob * @package WindowsAzure\Blob\Internal
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link http://pear.php.net/package/azure-sdk-for-php * @link http://pear.php.net/package/azure-sdk-for-php
*/ */

namespace WindowsAzure\Services\Blob; namespace WindowsAzure\Blob\Internal;
use WindowsAzure\Utilities; use WindowsAzure\Utilities;
use WindowsAzure\Resources; use WindowsAzure\Resources;
use WindowsAzure\Validate; use WindowsAzure\Validate;
use WindowsAzure\Services\Core\Models\ServiceProperties; use WindowsAzure\Services\Core\Models\ServiceProperties;
use WindowsAzure\Services\Core\ServiceRestProxy; use WindowsAzure\Services\Core\ServiceRestProxy;
use WindowsAzure\Services\Blob\IBlob; use WindowsAzure\Blob\Internal\IBlob;
use WindowsAzure\Services\Blob\Models\BlobServiceOptions; use WindowsAzure\Blob\Models\BlobServiceOptions;
use WindowsAzure\Services\Core\Models\GetServicePropertiesResult; use WindowsAzure\Services\Core\Models\GetServicePropertiesResult;
use WindowsAzure\Services\Blob\Models\ListContainersOptions; use WindowsAzure\Blob\Models\ListContainersOptions;
use WindowsAzure\Services\Blob\Models\ListContainersResult; use WindowsAzure\Blob\Models\ListContainersResult;
use WindowsAzure\Services\Blob\Models\CreateContainerOptions; use WindowsAzure\Blob\Models\CreateContainerOptions;
use WindowsAzure\Services\Blob\Models\GetContainerPropertiesResult; use WindowsAzure\Blob\Models\GetContainerPropertiesResult;
use WindowsAzure\Services\Blob\Models\GetContainerAclResult; use WindowsAzure\Blob\Models\GetContainerAclResult;
use WindowsAzure\Services\Blob\Models\SetContainerMetadataOptions; use WindowsAzure\Blob\Models\SetContainerMetadataOptions;
use WindowsAzure\Services\Blob\Models\DeleteContainerOptions; use WindowsAzure\Blob\Models\DeleteContainerOptions;
use WindowsAzure\Services\Blob\Models\ListBlobsOptions; use WindowsAzure\Blob\Models\ListBlobsOptions;
use WindowsAzure\Services\Blob\Models\ListBlobsResult; use WindowsAzure\Blob\Models\ListBlobsResult;
use WindowsAzure\Services\Blob\Models\BlobType; use WindowsAzure\Blob\Models\BlobType;
use WindowsAzure\Services\Blob\Models\CreateBlobOptions; use WindowsAzure\Blob\Models\CreateBlobOptions;
use WindowsAzure\Services\Blob\Models\BlobProperties; use WindowsAzure\Blob\Models\BlobProperties;
use WindowsAzure\Services\Blob\Models\GetBlobPropertiesOptions; use WindowsAzure\Blob\Models\GetBlobPropertiesOptions;
use WindowsAzure\Services\Blob\Models\GetBlobPropertiesResult; use WindowsAzure\Blob\Models\GetBlobPropertiesResult;
use WindowsAzure\Services\Blob\Models\SetBlobPropertiesOptions; use WindowsAzure\Blob\Models\SetBlobPropertiesOptions;
use WindowsAzure\Services\Blob\Models\SetBlobPropertiesResult; use WindowsAzure\Blob\Models\SetBlobPropertiesResult;
use WindowsAzure\Services\Blob\Models\GetBlobMetadataOptions; use WindowsAzure\Blob\Models\GetBlobMetadataOptions;
use WindowsAzure\Services\Blob\Models\GetBlobMetadataResult; use WindowsAzure\Blob\Models\GetBlobMetadataResult;
use WindowsAzure\Services\Blob\Models\SetBlobMetadataOptions; use WindowsAzure\Blob\Models\SetBlobMetadataOptions;
use WindowsAzure\Services\Blob\Models\SetBlobMetadataResult; use WindowsAzure\Blob\Models\SetBlobMetadataResult;
use WindowsAzure\Services\Blob\Models\GetBlobOptions; use WindowsAzure\Blob\Models\GetBlobOptions;
use WindowsAzure\Services\Blob\Models\GetBlobResult; use WindowsAzure\Blob\Models\GetBlobResult;
use WindowsAzure\Services\Blob\Models\DeleteBlobOptions; use WindowsAzure\Blob\Models\DeleteBlobOptions;
use WindowsAzure\Services\Blob\Models\LeaseMode; use WindowsAzure\Blob\Models\LeaseMode;
use WindowsAzure\Services\Blob\Models\AcquireLeaseOptions; use WindowsAzure\Blob\Models\AcquireLeaseOptions;
use WindowsAzure\Services\Blob\Models\AcquireLeaseResult; use WindowsAzure\Blob\Models\AcquireLeaseResult;
use WindowsAzure\Services\Blob\Models\CreateBlobPagesOptions; use WindowsAzure\Blob\Models\CreateBlobPagesOptions;
use WindowsAzure\Services\Blob\Models\CreateBlobPagesResult; use WindowsAzure\Blob\Models\CreateBlobPagesResult;
use WindowsAzure\Services\Blob\Models\PageWriteOption; use WindowsAzure\Blob\Models\PageWriteOption;
use WindowsAzure\Services\Blob\Models\ListPageBlobRangesOptions; use WindowsAzure\Blob\Models\ListPageBlobRangesOptions;
use WindowsAzure\Services\Blob\Models\ListPageBlobRangesResult; use WindowsAzure\Blob\Models\ListPageBlobRangesResult;
use WindowsAzure\Services\Blob\Models\CreateBlobBlockOptions; use WindowsAzure\Blob\Models\CreateBlobBlockOptions;
use WindowsAzure\Services\Blob\Models\CommitBlobBlocksOptions; use WindowsAzure\Blob\Models\CommitBlobBlocksOptions;
use WindowsAzure\Services\Blob\Models\BlockList; use WindowsAzure\Blob\Models\BlockList;
use WindowsAzure\Services\Blob\Models\ListBlobBlocksOptions; use WindowsAzure\Blob\Models\ListBlobBlocksOptions;
use WindowsAzure\Services\Blob\Models\ListBlobBlocksResult; use WindowsAzure\Blob\Models\ListBlobBlocksResult;
use WindowsAzure\Services\Blob\Models\CopyBlobOptions; use WindowsAzure\Blob\Models\CopyBlobOptions;
use WindowsAzure\Services\Blob\Models\CreateBlobSnapshotOptions; use WindowsAzure\Blob\Models\CreateBlobSnapshotOptions;
use WindowsAzure\Services\Blob\Models\CreateBlobSnapshotResult; use WindowsAzure\Blob\Models\CreateBlobSnapshotResult;
use WindowsAzure\Blob\Models\PageRange;


/** /**
* This class constructs HTTP requests and receive HTTP responses for blob * This class constructs HTTP requests and receive HTTP responses for blob
* service layer. * service layer.
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob * @package WindowsAzure\Blob\Internal
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
Expand Down Expand Up @@ -420,11 +421,11 @@ private function _updatePageBlobPagesImpl($action, $container, $blob, $range,
Validate::notNullOrEmpty($blob, 'blob'); Validate::notNullOrEmpty($blob, 'blob');
Validate::isString($container, 'container'); Validate::isString($container, 'container');
Validate::isTrue( Validate::isTrue(
$range instanceof Models\PageRange, $range instanceof PageRange,
sprintf( sprintf(
Resources::INVALID_PARAM_MSG, Resources::INVALID_PARAM_MSG,
'range', 'range',
get_class(new Models\PageRange()) get_class(new PageRange())
) )
); );
Validate::isTrue( Validate::isTrue(
Expand Down Expand Up @@ -613,7 +614,7 @@ public function setServiceProperties($serviceProperties, $options = null)
* *
* @param Models\ListContainersOptions $options The optional parameters. * @param Models\ListContainersOptions $options The optional parameters.
* *
* @return WindowsAzure\Services\Blob\Models\ListContainersResult * @return WindowsAzure\Blob\Models\ListContainersResult
* *
* @see http://msdn.microsoft.com/en-us/library/windowsazure/dd179352.aspx * @see http://msdn.microsoft.com/en-us/library/windowsazure/dd179352.aspx
*/ */
Expand Down
8 changes: 4 additions & 4 deletions WindowsAzure/Blob/Internal/IBlob.php
Expand Up @@ -15,21 +15,21 @@
* PHP version 5 * PHP version 5
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob * @package WindowsAzure\Blob\Internal
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link http://pear.php.net/package/azure-sdk-for-php * @link http://pear.php.net/package/azure-sdk-for-php
*/ */


namespace WindowsAzure\Services\Blob; namespace WindowsAzure\Blob\Internal;
use WindowsAzure\Core\FilterableService; use WindowsAzure\Core\FilterableService;


/** /**
* This interface has all REST APIs provided by Windows Azure for Blob service. * This interface has all REST APIs provided by Windows Azure for Blob service.
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob * @package WindowsAzure\Blob\Internal
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
Expand Down Expand Up @@ -67,7 +67,7 @@ public function setServiceProperties($serviceProperties, $options = null);
* *
* @param Models\ListContainersOptions $options optional parameters * @param Models\ListContainersOptions $options optional parameters
* *
* @return WindowsAzure\Services\Blob\Models\ListContainersResult * @return WindowsAzure\Blob\Models\ListContainersResult
* *
* @see http://msdn.microsoft.com/en-us/library/windowsazure/dd179352.aspx * @see http://msdn.microsoft.com/en-us/library/windowsazure/dd179352.aspx
*/ */
Expand Down
16 changes: 8 additions & 8 deletions WindowsAzure/Blob/Models/AccessCondition.php
Expand Up @@ -15,14 +15,14 @@
* PHP version 5 * PHP version 5
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob\Models * @package WindowsAzure\Blob\Models
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link http://pear.php.net/package/azure-sdk-for-php * @link http://pear.php.net/package/azure-sdk-for-php
*/ */


namespace WindowsAzure\Services\Blob\Models; namespace WindowsAzure\Blob\Models;
use WindowsAzure\Resources; use WindowsAzure\Resources;
use WindowsAzure\Validate; use WindowsAzure\Validate;
use WindowsAzure\Core\WindowsAzureUtilities; use WindowsAzure\Core\WindowsAzureUtilities;
Expand All @@ -32,7 +32,7 @@
* storage services. * storage services.
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob\Models * @package WindowsAzure\Blob\Models
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
Expand Down Expand Up @@ -70,7 +70,7 @@ protected function __construct($headerType, $value)
/** /**
* Specifies that no access condition is set. * Specifies that no access condition is set.
* *
* @return \WindowsAzure\Services\Blob\Models\AccessCondition * @return \WindowsAzure\Blob\Models\AccessCondition
*/ */
public static function none() public static function none()
{ {
Expand All @@ -92,7 +92,7 @@ public static function none()
* *
* @param string $etag a string that represents the ETag value to check. * @param string $etag a string that represents the ETag value to check.
* *
* @return \WindowsAzure\Services\Blob\Models\AccessCondition * @return \WindowsAzure\Blob\Models\AccessCondition
*/ */
public static function ifMatch($etag) public static function ifMatch($etag)
{ {
Expand All @@ -115,7 +115,7 @@ public static function ifMatch($etag)
* @param \DateTime $lastModified date that represents the last-modified * @param \DateTime $lastModified date that represents the last-modified
* time to check for the resource. * time to check for the resource.
* *
* @return \WindowsAzure\Services\Blob\Models\AccessCondition * @return \WindowsAzure\Blob\Models\AccessCondition
*/ */
public static function ifModifiedSince($lastModified) public static function ifModifiedSince($lastModified)
{ {
Expand All @@ -141,7 +141,7 @@ public static function ifModifiedSince($lastModified)
* *
* @param string $etag string that represents the ETag value to check. * @param string $etag string that represents the ETag value to check.
* *
* @return \WindowsAzure\Services\Blob\Models\AccessCondition * @return \WindowsAzure\Blob\Models\AccessCondition
*/ */
public static function ifNoneMatch($etag) public static function ifNoneMatch($etag)
{ {
Expand All @@ -164,7 +164,7 @@ public static function ifNoneMatch($etag)
* @param \DateTime $lastModified date that represents the last-modified * @param \DateTime $lastModified date that represents the last-modified
* time to check for the resource. * time to check for the resource.
* *
* @return \WindowsAzure\Services\Blob\Models\AccessCondition * @return \WindowsAzure\Blob\Models\AccessCondition
*/ */
public static function ifNotModifiedSince($lastModified) public static function ifNotModifiedSince($lastModified)
{ {
Expand Down
6 changes: 3 additions & 3 deletions WindowsAzure/Blob/Models/AccessPolicy.php
Expand Up @@ -15,14 +15,14 @@
* PHP version 5 * PHP version 5
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob\Models * @package WindowsAzure\Blob\Models
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link http://pear.php.net/package/azure-sdk-for-php * @link http://pear.php.net/package/azure-sdk-for-php
*/ */


namespace WindowsAzure\Services\Blob\Models; namespace WindowsAzure\Blob\Models;


use WindowsAzure\Utilities; use WindowsAzure\Utilities;
use WindowsAzure\Validate; use WindowsAzure\Validate;
Expand All @@ -31,7 +31,7 @@
* Holds container access policy elements * Holds container access policy elements
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob\Models * @package WindowsAzure\Blob\Models
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
Expand Down
6 changes: 3 additions & 3 deletions WindowsAzure/Blob/Models/AcquireLeaseOptions.php
Expand Up @@ -15,20 +15,20 @@
* PHP version 5 * PHP version 5
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob\Models * @package WindowsAzure\Blob\Models
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link http://pear.php.net/package/azure-sdk-for-php * @link http://pear.php.net/package/azure-sdk-for-php
*/ */


namespace WindowsAzure\Services\Blob\Models; namespace WindowsAzure\Blob\Models;


/** /**
* Optional parameters for acquireLease wrapper * Optional parameters for acquireLease wrapper
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob\Models * @package WindowsAzure\Blob\Models
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
Expand Down
6 changes: 3 additions & 3 deletions WindowsAzure/Blob/Models/AcquireLeaseResult.php
Expand Up @@ -15,22 +15,22 @@
* PHP version 5 * PHP version 5
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob\Models * @package WindowsAzure\Blob\Models
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link http://pear.php.net/package/azure-sdk-for-php * @link http://pear.php.net/package/azure-sdk-for-php
*/ */


namespace WindowsAzure\Services\Blob\Models; namespace WindowsAzure\Blob\Models;
use WindowsAzure\Resources; use WindowsAzure\Resources;
use WindowsAzure\Utilities; use WindowsAzure\Utilities;


/** /**
* Short description * Short description
* *
* @category Microsoft * @category Microsoft
* @package WindowsAzure\Services\Blob\Models * @package WindowsAzure\Blob\Models
* @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com> * @author Abdelrahman Elogeel <Abdelrahman.Elogeel@microsoft.com>
* @copyright 2012 Microsoft Corporation * @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
Expand Down

0 comments on commit 69a8cc0

Please sign in to comment.