Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Merge requests
!2
AARC IDP HINT implemented
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
AARC IDP HINT implemented
github/fork/dBucik/aarc_idp_hinting
into
simplesamlphp-1.19.1
Overview
2
Commits
1
Pipelines
0
Changes
9
Closed
Ghost User
requested to merge
github/fork/dBucik/aarc_idp_hinting
into
simplesamlphp-1.19.1
3 years ago
Overview
2
Commits
1
Pipelines
0
Changes
9
Expand
0
0
Merge request reports
Compare
simplesamlphp-1.19.1
simplesamlphp-1.19.1 (base)
and
latest version
latest version
576b5833
1 commit,
2 years ago
9 files
+
1908
−
707
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
lib/SimpleSAML/Auth/ExtendedAuthnRequest.php
0 → 100644
+
31
−
0
Options
<?php
namespace
SimpleSAML\Auth
;
use
SAML2\AuthnRequest
;
/**
* Class representing Authentication Request, aware of the AARC_IDP_HINT param
*
* @package SimpleSAMLphp\Auth
*/
class
ExtendedAuthnRequest
extends
AuthnRequest
{
private
$aarc_idp_hint
=
null
;
/**
* @return null
*/
public
function
getAarcIdpHint
()
{
return
$this
->
aarc_idp_hint
;
}
/**
* @param null $aarc_idp_hint
*/
public
function
setAarcIdpHint
(
$aarc_idp_hint
):
void
{
$this
->
aarc_idp_hint
=
$aarc_idp_hint
;
}
}
Loading