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
403WebShell
403Webshell
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 :  /var/www/hopeinstoughton_www/vendor/microsoft/microsoft-graph/src/Model/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/hopeinstoughton_www/vendor/microsoft/microsoft-graph/src/Model/SamlOrWsFedProvider.php
<?php
/**
* Copyright (c) Microsoft Corporation.  All Rights Reserved.  Licensed under the MIT License.  See License in the project root for license information.
* 
* SamlOrWsFedProvider 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;

/**
* SamlOrWsFedProvider 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 SamlOrWsFedProvider extends IdentityProviderBase
{
    /**
    * Gets the issuerUri
    * Issuer URI of the federation server.
    *
    * @return string|null The issuerUri
    */
    public function getIssuerUri()
    {
        if (array_key_exists("issuerUri", $this->_propDict)) {
            return $this->_propDict["issuerUri"];
        } else {
            return null;
        }
    }

    /**
    * Sets the issuerUri
    * Issuer URI of the federation server.
    *
    * @param string $val The issuerUri
    *
    * @return SamlOrWsFedProvider
    */
    public function setIssuerUri($val)
    {
        $this->_propDict["issuerUri"] = $val;
        return $this;
    }

    /**
    * Gets the metadataExchangeUri
    * URI of the metadata exchange endpoint used for authentication from rich client applications.
    *
    * @return string|null The metadataExchangeUri
    */
    public function getMetadataExchangeUri()
    {
        if (array_key_exists("metadataExchangeUri", $this->_propDict)) {
            return $this->_propDict["metadataExchangeUri"];
        } else {
            return null;
        }
    }

    /**
    * Sets the metadataExchangeUri
    * URI of the metadata exchange endpoint used for authentication from rich client applications.
    *
    * @param string $val The metadataExchangeUri
    *
    * @return SamlOrWsFedProvider
    */
    public function setMetadataExchangeUri($val)
    {
        $this->_propDict["metadataExchangeUri"] = $val;
        return $this;
    }

    /**
    * Gets the passiveSignInUri
    * URI that web-based clients are directed to when signing in to Azure Active Directory (Azure AD) services.
    *
    * @return string|null The passiveSignInUri
    */
    public function getPassiveSignInUri()
    {
        if (array_key_exists("passiveSignInUri", $this->_propDict)) {
            return $this->_propDict["passiveSignInUri"];
        } else {
            return null;
        }
    }

    /**
    * Sets the passiveSignInUri
    * URI that web-based clients are directed to when signing in to Azure Active Directory (Azure AD) services.
    *
    * @param string $val The passiveSignInUri
    *
    * @return SamlOrWsFedProvider
    */
    public function setPassiveSignInUri($val)
    {
        $this->_propDict["passiveSignInUri"] = $val;
        return $this;
    }

    /**
    * Gets the preferredAuthenticationProtocol
    * Preferred authentication protocol. The possible values are: wsFed, saml, unknownFutureValue.
    *
    * @return AuthenticationProtocol|null The preferredAuthenticationProtocol
    */
    public function getPreferredAuthenticationProtocol()
    {
        if (array_key_exists("preferredAuthenticationProtocol", $this->_propDict)) {
            if (is_a($this->_propDict["preferredAuthenticationProtocol"], "\Microsoft\Graph\Model\AuthenticationProtocol") || is_null($this->_propDict["preferredAuthenticationProtocol"])) {
                return $this->_propDict["preferredAuthenticationProtocol"];
            } else {
                $this->_propDict["preferredAuthenticationProtocol"] = new AuthenticationProtocol($this->_propDict["preferredAuthenticationProtocol"]);
                return $this->_propDict["preferredAuthenticationProtocol"];
            }
        }
        return null;
    }

    /**
    * Sets the preferredAuthenticationProtocol
    * Preferred authentication protocol. The possible values are: wsFed, saml, unknownFutureValue.
    *
    * @param AuthenticationProtocol $val The preferredAuthenticationProtocol
    *
    * @return SamlOrWsFedProvider
    */
    public function setPreferredAuthenticationProtocol($val)
    {
        $this->_propDict["preferredAuthenticationProtocol"] = $val;
        return $this;
    }

    /**
    * Gets the signingCertificate
    * Current certificate used to sign tokens passed to the Microsoft identity platform. The certificate is formatted as a Base64 encoded string of the public portion of the federated IdP's token signing certificate and must be compatible with the X509Certificate2 class.   This property is used in the following scenarios:  if a rollover is required outside of the autorollover update a new federation service is being set up  if the new token signing certificate isn't present in the federation properties after the federation service certificate has been updated.   Azure AD updates certificates via an autorollover process in which it attempts to retrieve a new certificate from the federation service metadata, 30 days before expiry of the current certificate. If a new certificate isn't available, Azure AD monitors the metadata daily and will update the federation settings for the domain when a new certificate is available.
    *
    * @return string|null The signingCertificate
    */
    public function getSigningCertificate()
    {
        if (array_key_exists("signingCertificate", $this->_propDict)) {
            return $this->_propDict["signingCertificate"];
        } else {
            return null;
        }
    }

    /**
    * Sets the signingCertificate
    * Current certificate used to sign tokens passed to the Microsoft identity platform. The certificate is formatted as a Base64 encoded string of the public portion of the federated IdP's token signing certificate and must be compatible with the X509Certificate2 class.   This property is used in the following scenarios:  if a rollover is required outside of the autorollover update a new federation service is being set up  if the new token signing certificate isn't present in the federation properties after the federation service certificate has been updated.   Azure AD updates certificates via an autorollover process in which it attempts to retrieve a new certificate from the federation service metadata, 30 days before expiry of the current certificate. If a new certificate isn't available, Azure AD monitors the metadata daily and will update the federation settings for the domain when a new certificate is available.
    *
    * @param string $val The signingCertificate
    *
    * @return SamlOrWsFedProvider
    */
    public function setSigningCertificate($val)
    {
        $this->_propDict["signingCertificate"] = $val;
        return $this;
    }

}

Youez - 2016 - github.com/yon3zu
LinuXploit