Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
AuthenticationAuthorization
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
Harbor Registry
Model registry
Operate
Environments
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
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Eclipse Projects
xfsc
AuthenticationAuthorization
Merge requests
!1
project setup
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
project setup
feature/GAIAXAUTH-6
into
main
Overview
0
Commits
2
Pipelines
0
Changes
16
Merged
Cristina Pauna
requested to merge
feature/GAIAXAUTH-6
into
main
3 years ago
Overview
0
Commits
2
Pipelines
0
Changes
16
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
dd522cb2
2 commits,
3 years ago
16 files
+
1616
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
16
Search (e.g. *.vue) (Ctrl+P)
app/src/main/java/eu/gaiax/difs/aas/AuthDemoApplication.java
0 → 100644
+
42
−
0
Options
/*-
* ---license-start
* EU Digital Green Certificate Gateway Service / dgc-gateway
* ---
* Copyright (C) 2021 T-Systems International GmbH and all other contributors
* ---
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ---license-end
*/
package
eu.gaiax.difs.aas
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
import
org.springframework.boot.web.servlet.support.SpringBootServletInitializer
;
/**
* The Application class.
*/
@SpringBootApplication
//@EnableResourceServer
public
class
AuthDemoApplication
extends
SpringBootServletInitializer
{
/**
* The main Method.
*
* @param args the args for the main method
*/
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
AuthDemoApplication
.
class
,
args
);
}
}
Loading