Skip to content
Snippets Groups Projects
Select Git revision
  • cf54b6d38bcbbdc467a91101ab4c20e9f49a21c8
  • main default protected
  • ozg-8323-umzug-dependency-track
  • OZG-8252-gitlab-pipelines
  • release
  • OZG-7856_schadcode_scanner
  • ci-pipeline
  • OZG-7526-signatur-nicht-uebernommen
  • OZG-6223-zip-download-bug
  • OZG-7367-tooltip-extension
  • OZG-7023-OZG-6956-E2E-externe-Stellen
  • OZG-6238-npm-durch-pnpm-ersetzen
  • release-admin
  • release-info
  • OZG-6700-admin-feature-toggle
  • E2E-Updates
  • OZG-7047-tooltips
  • OZG-6957-e2e-fachstellen-oe-daten
  • OZG-7006-ZuarbeitAnfragen
  • temp_OZG-7027
  • unit-tests-hotfix
  • 2.27.0
  • 2.26.0
  • 2.25.0
  • 2.24.2
  • 2.24.1
  • 2.24.0
  • 2.23.0
  • 2.22.0
  • 2.21.0
  • 2.20.0
  • 2.21.0-SNAPSHOT
  • 2.19.0
  • 2.18.0
  • 2.17.1
  • 1.3.0
  • release-admin-1.3.0
  • release-info-1.3.0
  • 2.17.0
  • 2.16.0
  • 2.15.0
41 results

run_helm_test.sh

Blame
  • vorgangcommand.proto 1.08 KiB
    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;
    }