Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bdd
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
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
Organization Credential Manager
bdd
Merge requests
!14
added tests for creds
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
added tests for creds
connectionManager
into
main
Overview
0
Commits
1
Pipelines
0
Changes
20
Merged
Rosen Georgiev
requested to merge
connectionManager
into
main
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
20
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
f8fb2d9d
1 commit,
2 years ago
20 files
+
978
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
20
Search (e.g. *.vue) (Ctrl+P)
src/main/java/api/test/rest/pojo/connection/Authentication.java
0 → 100644
+
31
−
0
Options
package
api.test.rest.pojo.connection
;
import
com.google.gson.annotations.Expose
;
public
class
Authentication
{
@Expose
private
String
publicKey
;
@Expose
private
String
type
;
public
String
getPublicKey
()
{
return
publicKey
;
}
public
void
setPublicKey
(
String
publicKey
)
{
this
.
publicKey
=
publicKey
;
}
public
String
getType
()
{
return
type
;
}
public
void
setType
(
String
type
)
{
this
.
type
=
type
;
}
}
Loading