summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ExchangeVersionType.php
diff options
context:
space:
mode:
authorroot2019-02-19 18:53:50 +0100
committerroot2019-02-19 18:53:50 +0100
commit0ad4c0f8196b61699754762aacbaab0223478ab9 (patch)
treede434c4aea8d07ecd01cd3badd48d057d62c2d1b /modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ExchangeVersionType.php
parent[usb-lock-off] Edit rule cleanup and fix of the dropdown boxes. (diff)
parent[statistics] Fix RAM change warning to handle increase too (diff)
downloadslx-admin-0ad4c0f8196b61699754762aacbaab0223478ab9.tar.gz
slx-admin-0ad4c0f8196b61699754762aacbaab0223478ab9.tar.xz
slx-admin-0ad4c0f8196b61699754762aacbaab0223478ab9.zip
Merge branch 'master' into usb-lock-offusb-lock-off
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ExchangeVersionType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ExchangeVersionType.php98
1 files changed, 98 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ExchangeVersionType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ExchangeVersionType.php
new file mode 100644
index 00000000..28fa614c
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ExchangeVersionType.php
@@ -0,0 +1,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';
+}