summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ResolveNamesSearchScopeType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ResolveNamesSearchScopeType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ResolveNamesSearchScopeType.php55
1 files changed, 55 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ResolveNamesSearchScopeType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ResolveNamesSearchScopeType.php
new file mode 100644
index 00000000..b7d0b592
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ResolveNamesSearchScopeType.php
@@ -0,0 +1,55 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\ResolveNamesSearchScopeType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines the order and scope for a ResolveNames search.
+ *
+ * @package php-ews\Enumeration
+ */
+class ResolveNamesSearchScopeType extends Enumeration
+{
+ /**
+ * Only the Active Directory directory service is searched.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const ACTIVE_DIRECTORY = 'ActiveDirectory';
+
+ /**
+ * Active Directory is searched first, and then the contact folders that are
+ * specified in the ParentFolderIds property are searched.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const ACTIVE_DIRECTORY_CONTACTS = 'ActiveDirectoryContacts';
+
+ /**
+ * Only the contact folders that are identified by the ParentFolderIds
+ * property are searched.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const CONTACTS = 'Contacts';
+
+ /**
+ * Contact folders that are identified by the ParentFolderIds property are
+ * searched first and then Active Directory is searched.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const CONTACTS_ACTIVE_DIRECTORY = 'ContactsActiveDirectory';
+}