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: * Constants for different request and metadata headers.
14: */
15: class Header
16: {
17: const OBJECT_COUNT = 'Object-Count';
18: const BYTES_USED = 'Bytes-Used';
19: const ACCESS_LOGS = 'Access-Log-Delivery';
20:
21: const TRANS_ID = 'Trans-Id';
22: const ENABLED = 'Enabled';
23: const LOG_RETENTION = 'Log-Retention';
24:
25: }