summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ExchangeVersionType.php
blob: 28fa614c4d18a92256eac7cb0ae5b37996aab3bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\ExchangeVersionType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Defines the versioning information that identifies the schema version to
 * target for a request.
 *
 * @package php-ews\Enumeration
 */
class ExchangeVersionType extends Enumeration
{
    /**
     * Target the schema files for the initial release version of Exchange 2007.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const EXCHANGE_2007 = 'Exchange2007';

    /**
     * Target the schema files for Exchange 2007 Service Pack 1 (SP1), Exchange
     * 2007 Service Pack 2 (SP2), and Exchange 2007 Service Pack 3 (SP3).
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const EXCHANGE_2007_SP1 = 'Exchange2007_SP1';

    /**
     * Microsoft Exchange 2007 SP2
     *
     * @var string
     */
    const VERSION_2009 = 'Exchange2009';

    /**
     * Target the schema files for Exchange 2010.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const EXCHANGE_2010 = 'Exchange2010';

    /**
     * Target the schema files for Exchange 2010 Service Pack 1 (SP1).
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     */
    const EXCHANGE_2010_SP1 = 'Exchange2010_SP1';

    /**
     * Target the schema files for Exchange 2010 Service Pack 2 (SP2) and
     * Exchange 2010 Service Pack 3 (SP3).
     *
     * @since Exchange 2010 SP2
     *
     * @var string
     */
    const EXCHANGE_2010_SP2 = 'Exchange2010_SP2';

    /**
     * Target the schema files for Exchange 2013.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const EXCHANGE_2013 = 'Exchange2013';

    /**
     * Target the schema files for Exchange 2013 Service Pack 1 (SP1).
     *
     * @since Exchange 2013 SP1
     *
     * @var string
     */
    const EXCHANGE_2013_SP1 = 'Exchange2013_SP1';

    /**
     * Target the schema files for Exchange 2016.
     *
     * @since Exchange 2016
     *
     * @var string
     */
    const VERSION_2016 = 'Exchange2016';
}