Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/cwd/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* ManagedAppProtection File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Microsoft\Graph\Model;
/**
* ManagedAppProtection class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class ManagedAppProtection extends ManagedAppPolicy
{
/**
* Gets the allowedDataStorageLocations
* Data storage locations where a user may store managed data.
*
* @return array|null The allowedDataStorageLocations
*/
public function getAllowedDataStorageLocations()
{
if (array_key_exists("allowedDataStorageLocations", $this->_propDict)) {
return $this->_propDict["allowedDataStorageLocations"];
} else {
return null;
}
}
/**
* Sets the allowedDataStorageLocations
* Data storage locations where a user may store managed data.
*
* @param ManagedAppDataStorageLocation[] $val The allowedDataStorageLocations
*
* @return ManagedAppProtection
*/
public function setAllowedDataStorageLocations($val)
{
$this->_propDict["allowedDataStorageLocations"] = $val;
return $this;
}
/**
* Gets the allowedInboundDataTransferSources
* Sources from which data is allowed to be transferred. Possible values are: allApps, managedApps, none.
*
* @return ManagedAppDataTransferLevel|null The allowedInboundDataTransferSources
*/
public function getAllowedInboundDataTransferSources()
{
if (array_key_exists("allowedInboundDataTransferSources", $this->_propDict)) {
if (is_a($this->_propDict["allowedInboundDataTransferSources"], "\Microsoft\Graph\Model\ManagedAppDataTransferLevel") || is_null($this->_propDict["allowedInboundDataTransferSources"])) {
return $this->_propDict["allowedInboundDataTransferSources"];
} else {
$this->_propDict["allowedInboundDataTransferSources"] = new ManagedAppDataTransferLevel($this->_propDict["allowedInboundDataTransferSources"]);
return $this->_propDict["allowedInboundDataTransferSources"];
}
}
return null;
}
/**
* Sets the allowedInboundDataTransferSources
* Sources from which data is allowed to be transferred. Possible values are: allApps, managedApps, none.
*
* @param ManagedAppDataTransferLevel $val The allowedInboundDataTransferSources
*
* @return ManagedAppProtection
*/
public function setAllowedInboundDataTransferSources($val)
{
$this->_propDict["allowedInboundDataTransferSources"] = $val;
return $this;
}
/**
* Gets the allowedOutboundClipboardSharingLevel
* The level to which the clipboard may be shared between apps on the managed device. Possible values are: allApps, managedAppsWithPasteIn, managedApps, blocked.
*
* @return ManagedAppClipboardSharingLevel|null The allowedOutboundClipboardSharingLevel
*/
public function getAllowedOutboundClipboardSharingLevel()
{
if (array_key_exists("allowedOutboundClipboardSharingLevel", $this->_propDict)) {
if (is_a($this->_propDict["allowedOutboundClipboardSharingLevel"], "\Microsoft\Graph\Model\ManagedAppClipboardSharingLevel") || is_null($this->_propDict["allowedOutboundClipboardSharingLevel"])) {
return $this->_propDict["allowedOutboundClipboardSharingLevel"];
} else {
$this->_propDict["allowedOutboundClipboardSharingLevel"] = new ManagedAppClipboardSharingLevel($this->_propDict["allowedOutboundClipboardSharingLevel"]);
return $this->_propDict["allowedOutboundClipboardSharingLevel"];
}
}
return null;
}
/**
* Sets the allowedOutboundClipboardSharingLevel
* The level to which the clipboard may be shared between apps on the managed device. Possible values are: allApps, managedAppsWithPasteIn, managedApps, blocked.
*
* @param ManagedAppClipboardSharingLevel $val The allowedOutboundClipboardSharingLevel
*
* @return ManagedAppProtection
*/
public function setAllowedOutboundClipboardSharingLevel($val)
{
$this->_propDict["allowedOutboundClipboardSharingLevel"] = $val;
return $this;
}
/**
* Gets the allowedOutboundDataTransferDestinations
* Destinations to which data is allowed to be transferred. Possible values are: allApps, managedApps, none.
*
* @return ManagedAppDataTransferLevel|null The allowedOutboundDataTransferDestinations
*/
public function getAllowedOutboundDataTransferDestinations()
{
if (array_key_exists("allowedOutboundDataTransferDestinations", $this->_propDict)) {
if (is_a($this->_propDict["allowedOutboundDataTransferDestinations"], "\Microsoft\Graph\Model\ManagedAppDataTransferLevel") || is_null($this->_propDict["allowedOutboundDataTransferDestinations"])) {
return $this->_propDict["allowedOutboundDataTransferDestinations"];
} else {
$this->_propDict["allowedOutboundDataTransferDestinations"] = new ManagedAppDataTransferLevel($this->_propDict["allowedOutboundDataTransferDestinations"]);
return $this->_propDict["allowedOutboundDataTransferDestinations"];
}
}
return null;
}
/**
* Sets the allowedOutboundDataTransferDestinations
* Destinations to which data is allowed to be transferred. Possible values are: allApps, managedApps, none.
*
* @param ManagedAppDataTransferLevel $val The allowedOutboundDataTransferDestinations
*
* @return ManagedAppProtection
*/
public function setAllowedOutboundDataTransferDestinations($val)
{
$this->_propDict["allowedOutboundDataTransferDestinations"] = $val;
return $this;
}
/**
* Gets the contactSyncBlocked
* Indicates whether contacts can be synced to the user's device.
*
* @return bool|null The contactSyncBlocked
*/
public function getContactSyncBlocked()
{
if (array_key_exists("contactSyncBlocked", $this->_propDict)) {
return $this->_propDict["contactSyncBlocked"];
} else {
return null;
}
}
/**
* Sets the contactSyncBlocked
* Indicates whether contacts can be synced to the user's device.
*
* @param bool $val The contactSyncBlocked
*
* @return ManagedAppProtection
*/
public function setContactSyncBlocked($val)
{
$this->_propDict["contactSyncBlocked"] = boolval($val);
return $this;
}
/**
* Gets the dataBackupBlocked
* Indicates whether the backup of a managed app's data is blocked.
*
* @return bool|null The dataBackupBlocked
*/
public function getDataBackupBlocked()
{
if (array_key_exists("dataBackupBlocked", $this->_propDict)) {
return $this->_propDict["dataBackupBlocked"];
} else {
return null;
}
}
/**
* Sets the dataBackupBlocked
* Indicates whether the backup of a managed app's data is blocked.
*
* @param bool $val The dataBackupBlocked
*
* @return ManagedAppProtection
*/
public function setDataBackupBlocked($val)
{
$this->_propDict["dataBackupBlocked"] = boolval($val);
return $this;
}
/**
* Gets the deviceComplianceRequired
* Indicates whether device compliance is required.
*
* @return bool|null The deviceComplianceRequired
*/
public function getDeviceComplianceRequired()
{
if (array_key_exists("deviceComplianceRequired", $this->_propDict)) {
return $this->_propDict["deviceComplianceRequired"];
} else {
return null;
}
}
/**
* Sets the deviceComplianceRequired
* Indicates whether device compliance is required.
*
* @param bool $val The deviceComplianceRequired
*
* @return ManagedAppProtection
*/
public function setDeviceComplianceRequired($val)
{
$this->_propDict["deviceComplianceRequired"] = boolval($val);
return $this;
}
/**
* Gets the disableAppPinIfDevicePinIsSet
* Indicates whether use of the app pin is required if the device pin is set.
*
* @return bool|null The disableAppPinIfDevicePinIsSet
*/
public function getDisableAppPinIfDevicePinIsSet()
{
if (array_key_exists("disableAppPinIfDevicePinIsSet", $this->_propDict)) {
return $this->_propDict["disableAppPinIfDevicePinIsSet"];
} else {
return null;
}
}
/**
* Sets the disableAppPinIfDevicePinIsSet
* Indicates whether use of the app pin is required if the device pin is set.
*
* @param bool $val The disableAppPinIfDevicePinIsSet
*
* @return ManagedAppProtection
*/
public function setDisableAppPinIfDevicePinIsSet($val)
{
$this->_propDict["disableAppPinIfDevicePinIsSet"] = boolval($val);
return $this;
}
/**
* Gets the fingerprintBlocked
* Indicates whether use of the fingerprint reader is allowed in place of a pin if PinRequired is set to True.
*
* @return bool|null The fingerprintBlocked
*/
public function getFingerprintBlocked()
{
if (array_key_exists("fingerprintBlocked", $this->_propDict)) {
return $this->_propDict["fingerprintBlocked"];
} else {
return null;
}
}
/**
* Sets the fingerprintBlocked
* Indicates whether use of the fingerprint reader is allowed in place of a pin if PinRequired is set to True.
*
* @param bool $val The fingerprintBlocked
*
* @return ManagedAppProtection
*/
public function setFingerprintBlocked($val)
{
$this->_propDict["fingerprintBlocked"] = boolval($val);
return $this;
}
/**
* Gets the managedBrowser
* Indicates in which managed browser(s) that internet links should be opened. When this property is configured, ManagedBrowserToOpenLinksRequired should be true. Possible values are: notConfigured, microsoftEdge.
*
* @return ManagedBrowserType|null The managedBrowser
*/
public function getManagedBrowser()
{
if (array_key_exists("managedBrowser", $this->_propDict)) {
if (is_a($this->_propDict["managedBrowser"], "\Microsoft\Graph\Model\ManagedBrowserType") || is_null($this->_propDict["managedBrowser"])) {
return $this->_propDict["managedBrowser"];
} else {
$this->_propDict["managedBrowser"] = new ManagedBrowserType($this->_propDict["managedBrowser"]);
return $this->_propDict["managedBrowser"];
}
}
return null;
}
/**
* Sets the managedBrowser
* Indicates in which managed browser(s) that internet links should be opened. When this property is configured, ManagedBrowserToOpenLinksRequired should be true. Possible values are: notConfigured, microsoftEdge.
*
* @param ManagedBrowserType $val The managedBrowser
*
* @return ManagedAppProtection
*/
public function setManagedBrowser($val)
{
$this->_propDict["managedBrowser"] = $val;
return $this;
}
/**
* Gets the managedBrowserToOpenLinksRequired
* Indicates whether internet links should be opened in the managed browser app, or any custom browser specified by CustomBrowserProtocol (for iOS) or CustomBrowserPackageId/CustomBrowserDisplayName (for Android)
*
* @return bool|null The managedBrowserToOpenLinksRequired
*/
public function getManagedBrowserToOpenLinksRequired()
{
if (array_key_exists("managedBrowserToOpenLinksRequired", $this->_propDict)) {
return $this->_propDict["managedBrowserToOpenLinksRequired"];
} else {
return null;
}
}
/**
* Sets the managedBrowserToOpenLinksRequired
* Indicates whether internet links should be opened in the managed browser app, or any custom browser specified by CustomBrowserProtocol (for iOS) or CustomBrowserPackageId/CustomBrowserDisplayName (for Android)
*
* @param bool $val The managedBrowserToOpenLinksRequired
*
* @return ManagedAppProtection
*/
public function setManagedBrowserToOpenLinksRequired($val)
{
$this->_propDict["managedBrowserToOpenLinksRequired"] = boolval($val);
return $this;
}
/**
* Gets the maximumPinRetries
* Maximum number of incorrect pin retry attempts before the managed app is either blocked or wiped.
*
* @return int|null The maximumPinRetries
*/
public function getMaximumPinRetries()
{
if (array_key_exists("maximumPinRetries", $this->_propDict)) {
return $this->_propDict["maximumPinRetries"];
} else {
return null;
}
}
/**
* Sets the maximumPinRetries
* Maximum number of incorrect pin retry attempts before the managed app is either blocked or wiped.
*
* @param int $val The maximumPinRetries
*
* @return ManagedAppProtection
*/
public function setMaximumPinRetries($val)
{
$this->_propDict["maximumPinRetries"] = intval($val);
return $this;
}
/**
* Gets the minimumPinLength
* Minimum pin length required for an app-level pin if PinRequired is set to True
*
* @return int|null The minimumPinLength
*/
public function getMinimumPinLength()
{
if (array_key_exists("minimumPinLength", $this->_propDict)) {
return $this->_propDict["minimumPinLength"];
} else {
return null;
}
}
/**
* Sets the minimumPinLength
* Minimum pin length required for an app-level pin if PinRequired is set to True
*
* @param int $val The minimumPinLength
*
* @return ManagedAppProtection
*/
public function setMinimumPinLength($val)
{
$this->_propDict["minimumPinLength"] = intval($val);
return $this;
}
/**
* Gets the minimumRequiredAppVersion
* Versions less than the specified version will block the managed app from accessing company data.
*
* @return string|null The minimumRequiredAppVersion
*/
public function getMinimumRequiredAppVersion()
{
if (array_key_exists("minimumRequiredAppVersion", $this->_propDict)) {
return $this->_propDict["minimumRequiredAppVersion"];
} else {
return null;
}
}
/**
* Sets the minimumRequiredAppVersion
* Versions less than the specified version will block the managed app from accessing company data.
*
* @param string $val The minimumRequiredAppVersion
*
* @return ManagedAppProtection
*/
public function setMinimumRequiredAppVersion($val)
{
$this->_propDict["minimumRequiredAppVersion"] = $val;
return $this;
}
/**
* Gets the minimumRequiredOsVersion
* Versions less than the specified version will block the managed app from accessing company data.
*
* @return string|null The minimumRequiredOsVersion
*/
public function getMinimumRequiredOsVersion()
{
if (array_key_exists("minimumRequiredOsVersion", $this->_propDict)) {
return $this->_propDict["minimumRequiredOsVersion"];
} else {
return null;
}
}
/**
* Sets the minimumRequiredOsVersion
* Versions less than the specified version will block the managed app from accessing company data.
*
* @param string $val The minimumRequiredOsVersion
*
* @return ManagedAppProtection
*/
public function setMinimumRequiredOsVersion($val)
{
$this->_propDict["minimumRequiredOsVersion"] = $val;
return $this;
}
/**
* Gets the minimumWarningAppVersion
* Versions less than the specified version will result in warning message on the managed app.
*
* @return string|null The minimumWarningAppVersion
*/
public function getMinimumWarningAppVersion()
{
if (array_key_exists("minimumWarningAppVersion", $this->_propDict)) {
return $this->_propDict["minimumWarningAppVersion"];
} else {
return null;
}
}
/**
* Sets the minimumWarningAppVersion
* Versions less than the specified version will result in warning message on the managed app.
*
* @param string $val The minimumWarningAppVersion
*
* @return ManagedAppProtection
*/
public function setMinimumWarningAppVersion($val)
{
$this->_propDict["minimumWarningAppVersion"] = $val;
return $this;
}
/**
* Gets the minimumWarningOsVersion
* Versions less than the specified version will result in warning message on the managed app from accessing company data.
*
* @return string|null The minimumWarningOsVersion
*/
public function getMinimumWarningOsVersion()
{
if (array_key_exists("minimumWarningOsVersion", $this->_propDict)) {
return $this->_propDict["minimumWarningOsVersion"];
} else {
return null;
}
}
/**
* Sets the minimumWarningOsVersion
* Versions less than the specified version will result in warning message on the managed app from accessing company data.
*
* @param string $val The minimumWarningOsVersion
*
* @return ManagedAppProtection
*/
public function setMinimumWarningOsVersion($val)
{
$this->_propDict["minimumWarningOsVersion"] = $val;
return $this;
}
/**
* Gets the organizationalCredentialsRequired
* Indicates whether organizational credentials are required for app use.
*
* @return bool|null The organizationalCredentialsRequired
*/
public function getOrganizationalCredentialsRequired()
{
if (array_key_exists("organizationalCredentialsRequired", $this->_propDict)) {
return $this->_propDict["organizationalCredentialsRequired"];
} else {
return null;
}
}
/**
* Sets the organizationalCredentialsRequired
* Indicates whether organizational credentials are required for app use.
*
* @param bool $val The organizationalCredentialsRequired
*
* @return ManagedAppProtection
*/
public function setOrganizationalCredentialsRequired($val)
{
$this->_propDict["organizationalCredentialsRequired"] = boolval($val);
return $this;
}
/**
* Gets the periodBeforePinReset
* TimePeriod before the all-level pin must be reset if PinRequired is set to True.
*
* @return \DateInterval|null The periodBeforePinReset
*/
public function getPeriodBeforePinReset()
{
if (array_key_exists("periodBeforePinReset", $this->_propDict)) {
if (is_a($this->_propDict["periodBeforePinReset"], "\DateInterval") || is_null($this->_propDict["periodBeforePinReset"])) {
return $this->_propDict["periodBeforePinReset"];
} else {
$this->_propDict["periodBeforePinReset"] = new \DateInterval($this->_propDict["periodBeforePinReset"]);
return $this->_propDict["periodBeforePinReset"];
}
}
return null;
}
/**
* Sets the periodBeforePinReset
* TimePeriod before the all-level pin must be reset if PinRequired is set to True.
*
* @param \DateInterval $val The periodBeforePinReset
*
* @return ManagedAppProtection
*/
public function setPeriodBeforePinReset($val)
{
$this->_propDict["periodBeforePinReset"] = $val;
return $this;
}
/**
* Gets the periodOfflineBeforeAccessCheck
* The period after which access is checked when the device is not connected to the internet.
*
* @return \DateInterval|null The periodOfflineBeforeAccessCheck
*/
public function getPeriodOfflineBeforeAccessCheck()
{
if (array_key_exists("periodOfflineBeforeAccessCheck", $this->_propDict)) {
if (is_a($this->_propDict["periodOfflineBeforeAccessCheck"], "\DateInterval") || is_null($this->_propDict["periodOfflineBeforeAccessCheck"])) {
return $this->_propDict["periodOfflineBeforeAccessCheck"];
} else {
$this->_propDict["periodOfflineBeforeAccessCheck"] = new \DateInterval($this->_propDict["periodOfflineBeforeAccessCheck"]);
return $this->_propDict["periodOfflineBeforeAccessCheck"];
}
}
return null;
}
/**
* Sets the periodOfflineBeforeAccessCheck
* The period after which access is checked when the device is not connected to the internet.
*
* @param \DateInterval $val The periodOfflineBeforeAccessCheck
*
* @return ManagedAppProtection
*/
public function setPeriodOfflineBeforeAccessCheck($val)
{
$this->_propDict["periodOfflineBeforeAccessCheck"] = $val;
return $this;
}
/**
* Gets the periodOfflineBeforeWipeIsEnforced
* The amount of time an app is allowed to remain disconnected from the internet before all managed data it is wiped.
*
* @return \DateInterval|null The periodOfflineBeforeWipeIsEnforced
*/
public function getPeriodOfflineBeforeWipeIsEnforced()
{
if (array_key_exists("periodOfflineBeforeWipeIsEnforced", $this->_propDict)) {
if (is_a($this->_propDict["periodOfflineBeforeWipeIsEnforced"], "\DateInterval") || is_null($this->_propDict["periodOfflineBeforeWipeIsEnforced"])) {
return $this->_propDict["periodOfflineBeforeWipeIsEnforced"];
} else {
$this->_propDict["periodOfflineBeforeWipeIsEnforced"] = new \DateInterval($this->_propDict["periodOfflineBeforeWipeIsEnforced"]);
return $this->_propDict["periodOfflineBeforeWipeIsEnforced"];
}
}
return null;
}
/**
* Sets the periodOfflineBeforeWipeIsEnforced
* The amount of time an app is allowed to remain disconnected from the internet before all managed data it is wiped.
*
* @param \DateInterval $val The periodOfflineBeforeWipeIsEnforced
*
* @return ManagedAppProtection
*/
public function setPeriodOfflineBeforeWipeIsEnforced($val)
{
$this->_propDict["periodOfflineBeforeWipeIsEnforced"] = $val;
return $this;
}
/**
* Gets the periodOnlineBeforeAccessCheck
* The period after which access is checked when the device is connected to the internet.
*
* @return \DateInterval|null The periodOnlineBeforeAccessCheck
*/
public function getPeriodOnlineBeforeAccessCheck()
{
if (array_key_exists("periodOnlineBeforeAccessCheck", $this->_propDict)) {
if (is_a($this->_propDict["periodOnlineBeforeAccessCheck"], "\DateInterval") || is_null($this->_propDict["periodOnlineBeforeAccessCheck"])) {
return $this->_propDict["periodOnlineBeforeAccessCheck"];
} else {
$this->_propDict["periodOnlineBeforeAccessCheck"] = new \DateInterval($this->_propDict["periodOnlineBeforeAccessCheck"]);
return $this->_propDict["periodOnlineBeforeAccessCheck"];
}
}
return null;
}
/**
* Sets the periodOnlineBeforeAccessCheck
* The period after which access is checked when the device is connected to the internet.
*
* @param \DateInterval $val The periodOnlineBeforeAccessCheck
*
* @return ManagedAppProtection
*/
public function setPeriodOnlineBeforeAccessCheck($val)
{
$this->_propDict["periodOnlineBeforeAccessCheck"] = $val;
return $this;
}
/**
* Gets the pinCharacterSet
* Character set which may be used for an app-level pin if PinRequired is set to True. Possible values are: numeric, alphanumericAndSymbol.
*
* @return ManagedAppPinCharacterSet|null The pinCharacterSet
*/
public function getPinCharacterSet()
{
if (array_key_exists("pinCharacterSet", $this->_propDict)) {
if (is_a($this->_propDict["pinCharacterSet"], "\Microsoft\Graph\Model\ManagedAppPinCharacterSet") || is_null($this->_propDict["pinCharacterSet"])) {
return $this->_propDict["pinCharacterSet"];
} else {
$this->_propDict["pinCharacterSet"] = new ManagedAppPinCharacterSet($this->_propDict["pinCharacterSet"]);
return $this->_propDict["pinCharacterSet"];
}
}
return null;
}
/**
* Sets the pinCharacterSet
* Character set which may be used for an app-level pin if PinRequired is set to True. Possible values are: numeric, alphanumericAndSymbol.
*
* @param ManagedAppPinCharacterSet $val The pinCharacterSet
*
* @return ManagedAppProtection
*/
public function setPinCharacterSet($val)
{
$this->_propDict["pinCharacterSet"] = $val;
return $this;
}
/**
* Gets the pinRequired
* Indicates whether an app-level pin is required.
*
* @return bool|null The pinRequired
*/
public function getPinRequired()
{
if (array_key_exists("pinRequired", $this->_propDict)) {
return $this->_propDict["pinRequired"];
} else {
return null;
}
}
/**
* Sets the pinRequired
* Indicates whether an app-level pin is required.
*
* @param bool $val The pinRequired
*
* @return ManagedAppProtection
*/
public function setPinRequired($val)
{
$this->_propDict["pinRequired"] = boolval($val);
return $this;
}
/**
* Gets the printBlocked
* Indicates whether printing is allowed from managed apps.
*
* @return bool|null The printBlocked
*/
public function getPrintBlocked()
{
if (array_key_exists("printBlocked", $this->_propDict)) {
return $this->_propDict["printBlocked"];
} else {
return null;
}
}
/**
* Sets the printBlocked
* Indicates whether printing is allowed from managed apps.
*
* @param bool $val The printBlocked
*
* @return ManagedAppProtection
*/
public function setPrintBlocked($val)
{
$this->_propDict["printBlocked"] = boolval($val);
return $this;
}
/**
* Gets the saveAsBlocked
* Indicates whether users may use the 'Save As' menu item to save a copy of protected files.
*
* @return bool|null The saveAsBlocked
*/
public function getSaveAsBlocked()
{
if (array_key_exists("saveAsBlocked", $this->_propDict)) {
return $this->_propDict["saveAsBlocked"];
} else {
return null;
}
}
/**
* Sets the saveAsBlocked
* Indicates whether users may use the 'Save As' menu item to save a copy of protected files.
*
* @param bool $val The saveAsBlocked
*
* @return ManagedAppProtection
*/
public function setSaveAsBlocked($val)
{
$this->_propDict["saveAsBlocked"] = boolval($val);
return $this;
}
/**
* Gets the simplePinBlocked
* Indicates whether simplePin is blocked.
*
* @return bool|null The simplePinBlocked
*/
public function getSimplePinBlocked()
{
if (array_key_exists("simplePinBlocked", $this->_propDict)) {
return $this->_propDict["simplePinBlocked"];
} else {
return null;
}
}
/**
* Sets the simplePinBlocked
* Indicates whether simplePin is blocked.
*
* @param bool $val The simplePinBlocked
*
* @return ManagedAppProtection
*/
public function setSimplePinBlocked($val)
{
$this->_propDict["simplePinBlocked"] = boolval($val);
return $this;
}
}