Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
token-checker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
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
OZG-Cloud
app
token-checker
Commits
12c0b474
Commit
12c0b474
authored
5 months ago
by
OZGCloud
Browse files
Options
Downloads
Patches
Plain Diff
OZG-7092 refactor protobuf model
parent
e09c5070
No related branches found
No related tags found
1 merge request
!1
OZG-7092 Anpassung TokenChecker
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
token-checker-interface/src/main/protobuf/tokencheck.model.proto
+5
-11
5 additions, 11 deletions
...hecker-interface/src/main/protobuf/tokencheck.model.proto
with
5 additions
and
11 deletions
token-checker-interface/src/main/protobuf/tokencheck.model.proto
+
5
−
11
View file @
12c0b474
...
@@ -12,29 +12,23 @@ message GrpcCheckTokenRequest {
...
@@ -12,29 +12,23 @@ message GrpcCheckTokenRequest {
message
GrpcCheckTokenResponse
{
message
GrpcCheckTokenResponse
{
bool
tokenValid
=
1
;
bool
tokenValid
=
1
;
oneof
checkTokenResult
s
{
oneof
checkTokenResult
{
Grpc
CheckTokenResult
tokenCheckResult
=
2
;
Grpc
TokenAttributes
tokenAttributes
=
2
;
GrpcCheckError
checkError
=
3
;
GrpcCheckError
checkError
=
3
;
}
}
}
}
message
Grpc
CheckTokenResult
{
message
Grpc
TokenAttributes
{
string
postfachId
=
1
;
string
postfachId
=
1
;
string
trustLevel
=
2
;
string
trustLevel
=
2
;
repeated
Grpc
TokenAttribute
otherFields
=
3
;
repeated
Grpc
OtherFields
otherFields
=
3
;
}
}
message
Grpc
TokenAttribute
{
message
Grpc
OtherFields
{
string
name
=
1
;
string
name
=
1
;
string
value
=
2
;
string
value
=
2
;
}
}
message
GrpcCheckError
{
message
GrpcCheckError
{
string
message
=
1
;
string
message
=
1
;
repeated
GrpcSamlError
samlError
=
2
;
}
message
GrpcSamlError
{
string
errorCode
=
1
;
string
description
=
2
;
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment