Skip to content
Snippets Groups Projects
Select Git revision
  • debug-eakte
  • master default protected
  • dev
  • ckan-2.9
  • refactor-css
  • improve-accessibility
  • fix-get_action-calls
  • summary-collection
  • debug-collections
  • experimental-linked-resources-as-uploads
  • button-text-detail
  • Detailinfo
  • hash
  • URL_Upload
  • URL_Upload_working_BB
  • url_exp
  • ODPSH-550
  • href-for-preview
  • ODPSH-HASH-ALGO
  • Algo
  • v1.61
  • v1.6
  • v1.51
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • v0.1
  • sprint-18
  • sprint11_2
  • sprint10
  • sprint8
  • sprint7
  • sprint6
36 results

out.uls

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;
    }