summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/RetentionActionType.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/RetentionActionType.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/RetentionActionType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/RetentionActionType.php79
1 files changed, 79 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/RetentionActionType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/RetentionActionType.php
new file mode 100644
index 00000000..285ad7bc
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/RetentionActionType.php
@@ -0,0 +1,79 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\RetentionActionType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines the action performed on items with the retention tag.
+ *
+ * @package php-ews\Enumeration
+ */
+class RetentionActionType extends Enumeration
+{
+ /**
+ * The item is deleted and put into the Dumpster.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const DELETE_AND_ALLOW_RECOVERY = 'DeleteAndAllowRecovery';
+
+ /**
+ * The item is marked as having exceeded the retention time limit.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const MARK_AS_PAST_RETENTION_LIMIT = 'MarkAsPastRetentionLimit';
+
+ /**
+ * The item is moved to the archive mailbox.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const MOVE_TO_ARCHIVE = 'MoveToArchive';
+
+ /**
+ * The item is moved to the default Deleted Items folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const MOVE_TO_DELETED_ITEMS = 'MoveToDeletedItems';
+
+ /**
+ * The item is moved to a specified folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const MOVE_TO_FOLDER = 'MoveToFolder';
+
+ /**
+ * No action is performed on the item.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const NONE = 'None';
+
+ /**
+ * The item is permanently deleted from the mailbox.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const PERMANENTLY_DELETE = 'PermanentlyDelete';
+}