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 Glen Campbell <glen.campbell@rackspace.com>
8: * @author Jamie Hannaford <jamie.hannaford@rackspace.com>
9: */
10:
11: namespace OpenCloud\ObjectStore;
12:
13: use OpenCloud\OpenStack;
14:
15: /**
16: * This is the CDN version of the ObjectStore service.
17: */
18: class CDNService extends AbstractService
19: {
20: const DEFAULT_NAME = 'cloudFilesCDN';
21: const DEFAULT_TYPE = 'rax:object-cdn';
22: }
23: