1: <?php
2: /**
3: * PHP OpenCloud library.
4: *
5: * @copyright 2013 Rackspace Hosting, Inc. See LICENSE for information.
6: * @license https://www.apache.org/licenses/LICENSE-2.0
7: * @author Jamie Hannaford <jamie.hannaford@rackspace.com>
8: */
9:
10: namespace OpenCloud\ObjectStore\Constants;
11:
12: /**
13: * Enumerated constants used in CloudFiles for URL types.
14: */
15: class UrlType
16: {
17: const CDN = 'CDN';
18: const SSL = 'SSL';
19: const STREAMING = 'Streaming';
20: const IOS_STREAMING = 'IOS-Streaming';
21:
22: const TAR = 'tar';
23: const TAR_GZ = 'tar.gz';
24: const TAR_BZ2 = 'tar.bz2';
25: }