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
!17
added tests to proof manager
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
added tests to proof manager
connectionManager
into
main
Overview
0
Commits
1
Pipelines
0
Changes
13
Merged
Rosen Georgiev
requested to merge
connectionManager
into
main
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
13
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
a65b0650
1 commit,
2 years ago
13 files
+
647
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
src/main/java/api/test/rest/pojo/presentationRequest/Data.java
0 → 100644
+
109
−
0
Options
package
api.test.rest.pojo.presentationRequest
;
import
com.google.gson.annotations.SerializedName
;
public
class
Data
{
@SerializedName
(
"connectionId"
)
private
String
mConnectionId
;
@SerializedName
(
"createdDate"
)
private
String
mCreatedDate
;
@SerializedName
(
"credentialDefId"
)
private
String
mCredentialDefId
;
@SerializedName
(
"id"
)
private
String
mId
;
@SerializedName
(
"presentationId"
)
private
String
mPresentationId
;
@SerializedName
(
"presentationMessage"
)
private
String
mPresentationMessage
;
@SerializedName
(
"schemaId"
)
private
String
mSchemaId
;
@SerializedName
(
"status"
)
private
String
mStatus
;
@SerializedName
(
"theirDid"
)
private
String
mTheirDid
;
@SerializedName
(
"updatedDate"
)
private
String
mUpdatedDate
;
public
String
getConnectionId
()
{
return
mConnectionId
;
}
public
void
setConnectionId
(
String
connectionId
)
{
mConnectionId
=
connectionId
;
}
public
String
getCreatedDate
()
{
return
mCreatedDate
;
}
public
void
setCreatedDate
(
String
createdDate
)
{
mCreatedDate
=
createdDate
;
}
public
String
getCredentialDefId
()
{
return
mCredentialDefId
;
}
public
void
setCredentialDefId
(
String
credentialDefId
)
{
mCredentialDefId
=
credentialDefId
;
}
public
String
getId
()
{
return
mId
;
}
public
void
setId
(
String
id
)
{
mId
=
id
;
}
public
String
getPresentationId
()
{
return
mPresentationId
;
}
public
void
setPresentationId
(
String
presentationId
)
{
mPresentationId
=
presentationId
;
}
public
String
getPresentationMessage
()
{
return
mPresentationMessage
;
}
public
void
setPresentationMessage
(
String
presentationMessage
)
{
mPresentationMessage
=
presentationMessage
;
}
public
String
getSchemaId
()
{
return
mSchemaId
;
}
public
void
setSchemaId
(
String
schemaId
)
{
mSchemaId
=
schemaId
;
}
public
String
getStatus
()
{
return
mStatus
;
}
public
void
setStatus
(
String
status
)
{
mStatus
=
status
;
}
public
String
getTheirDid
()
{
return
mTheirDid
;
}
public
void
setTheirDid
(
String
theirDid
)
{
mTheirDid
=
theirDid
;
}
public
String
getUpdatedDate
()
{
return
mUpdatedDate
;
}
public
void
setUpdatedDate
(
String
updatedDate
)
{
mUpdatedDate
=
updatedDate
;
}
}
Loading