Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
tests
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
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
Show more breadcrumbs
Gaia-X
Trust Services API
tests
Merge requests
!19
refactor for dev env
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
refactor for dev env
dev-environment-setup
into
main
Overview
0
Commits
1
Pipelines
0
Changes
12
Merged
Georgi Michev
requested to merge
dev-environment-setup
into
main
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
12
Expand
Signed-off-by: georgi.michev
georgi.michev@vereign.com
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
c7b20d46
1 commit,
2 years ago
12 files
+
164
−
42
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
src/main/java/core/JsonUtils.java
+
3
−
3
Options
@@ -233,7 +233,7 @@ public class JsonUtils {
* @return the uri
*/
public
static
String
getTSAPolicy
()
{
return
System
.
getProperty
(
"baseUrl"
)
+
"
:8081
/policy"
;
return
System
.
getProperty
(
"baseUrl"
)
+
"/policy"
;
}
/**
@@ -241,7 +241,7 @@ public class JsonUtils {
* @return the uri
*/
public
static
String
getTSACache
()
{
return
System
.
getProperty
(
"baseUrl"
)
+
"
:8083/v1
/cache"
;
return
System
.
getProperty
(
"baseUrl"
)
+
"/cache"
;
}
/**
@@ -249,7 +249,7 @@ public class JsonUtils {
* @return the uri
*/
public
static
String
getTSATask
()
{
return
System
.
getProperty
(
"baseUrl"
)
+
"
:8082/v1
"
;
return
System
.
getProperty
(
"baseUrl"
)
+
"
/task
"
;
}
/**
Loading