Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LabraDoor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
LabraDoor
Merge requests
!29
Resolve "SAML enabling"
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "SAML enabling"
9-saml-enabling
into
development
Overview
0
Commits
1
Pipelines
6
Changes
3
Merged
Resolve "SAML enabling"
Chris Lemaire
requested to merge
9-saml-enabling
into
development
May 27, 2020
Overview
0
Commits
1
Pipelines
6
Changes
3
Closes
#9 (closed)
Edited
May 27, 2020
by
Chris Lemaire
0
0
Merge request reports
Compare
development
version 1
0e7bf22b
May 27, 2020
development (base)
and
latest version
latest version
ed3934f6
1 commit,
May 27, 2020
version 1
0e7bf22b
1 commit,
May 27, 2020
3 files
+
40
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
src/main/java/nl/tudelft/labracore/lib/security/saml/SAMLEnablingConfig.java
0 → 100644
+
30
−
0
View file @ ed3934f6
Edit in single-file editor
Open in Web IDE
/*
* Labracore - A connecting core service for Labrador products
* Copyright (C) 2020- Delft University of Technology
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package
nl.tudelft.labracore.lib.security.saml
;
import
org.springframework.boot.autoconfigure.ImportAutoConfiguration
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnExpression
;
import
org.springframework.context.annotation.Configuration
;
import
com.github.ulisesbocchio.spring.boot.security.saml.configuration.SAMLServiceProviderSecurityConfiguration
;
@ConditionalOnExpression
(
"#{'${labrador.sso.type}' == 'saml'}"
)
@ImportAutoConfiguration
({
SAMLSecurityConfig
.
class
,
SAMLServiceProviderSecurityConfiguration
.
class
})
@Configuration
public
class
SAMLEnablingConfig
{
}
Loading