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: * @author Glen Campbell <glen.campbell@rackspace.com>
9: */
10:
11: namespace OpenCloud\Common\Constants;
12:
13:
14: class State
15: {
16: const ACTIVE = 'ACTIVE';
17: const ERROR = 'ERROR';
18:
19: const DEFAULT_TIMEOUT = 3600;
20: const DEFAULT_INTERVAL = 10;
21: }