Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vorgang-manager
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
vorgang-manager
Commits
c161b596
Commit
c161b596
authored
4 years ago
by
OZGCloud
Browse files
Options
Downloads
Patches
Plain Diff
OZG-198 - add protobuf file for StatusWechsel
parent
cc9a5ac4
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
pluto-interface/src/main/protobuf/callcontext.proto
+18
-0
18 additions, 0 deletions
pluto-interface/src/main/protobuf/callcontext.proto
pluto-interface/src/main/protobuf/vorgangcommand.proto
+55
-0
55 additions, 0 deletions
pluto-interface/src/main/protobuf/vorgangcommand.proto
with
73 additions
and
0 deletions
pluto-interface/src/main/protobuf/callcontext.proto
0 → 100644
+
18
−
0
View file @
c161b596
syntax
=
"proto3"
;
package
de
.
itvsh.ozg.pluto.command
;
option
java_multiple_files
=
true
;
option
java_package
=
"de.itvsh.ozg.pluto.command"
;
option
java_outer_classname
=
"SharedCommandProto"
;
message
CallContext
{
string
client
=
1
;
User
user
=
2
;
}
message
User
{
string
id
=
1
;
string
name
=
2
;
repeated
string
roles
=
3
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
pluto-interface/src/main/protobuf/vorgangcommand.proto
0 → 100644
+
55
−
0
View file @
c161b596
syntax
=
"proto3"
;
package
de
.
itvsh.ozg.pluto.vorgang.command
;
import
"callcontext.proto"
;
option
java_multiple_files
=
true
;
option
java_package
=
"de.itvsh.ozg.pluto.vorgang.command"
;
option
java_outer_classname
=
"VorgangCommandProto"
;
service
CommandService
{
rpc
CreateVorgangCommand
(
CreateVorgangCommandRequest
)
returns
(
CommandResponse
)
{
}
rpc
RevokeVorgangCommand
(
RevokeVorgangCommandRequest
)
returns
(
CommandResponse
)
{
}
}
enum
Order
{
ANNEHMEN
=
0
;
}
message
CreateVorgangCommandRequest
{
de.itvsh.ozg.pluto.command.CallContext
context
=
1
;
string
vorgangId
=
2
;
string
order
=
3
;
string
documentVersion
=
4
;
}
message
CommandResponse
{
enum
ResponseCode
{
OK
=
0
;
PENDING
=
1
;
ERROR
=
2
;
CONFLICT
=
3
;
}
ResponseCode
responseCode
=
1
;
string
messageCode
=
2
;
string
messageParameters
=
3
;
string
commandId
=
4
;
string
documentVersion
=
5
;
}
message
MessageParameter
{
string
name
=
1
;
string
value
=
2
;
}
message
RevokeVorgangCommandRequest
{
de.itvsh.ozg.pluto.command.CallContext
context
=
1
;
string
commandId
=
2
;
string
documentVersion
=
3
;
}
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