Skip to content
Snippets Groups Projects
Select Git revision
  • f9aff6140e92dff045e7c1d0e89c54ea0dfe5f10
  • main default protected
  • OZG-8252-gitlab-pipelines
  • OZG-7856_schadcode_scanner
  • release
  • develop
  • OZG-4097-OSI2-Anbindung
  • OZG-7689_use-new-pm
  • fix-dependencies
  • CommandRepositoryRefactoring
  • OZG-5580-torsten-test-20240902
  • OZG-5580-Configure-To-Connect-To-Zufi
  • fix-keycloak-metadata
  • ozg-3938-disable-grpc-tls
  • OZG-4906
  • 2.28.0
  • 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.19.0
  • 2.18.0
  • 2.17.1
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.1
  • bescheid-manager-1.18.0
35 results

postfach.model.proto

Blame
  • postfach.model.proto 2.35 KiB
    /*
     * Copyright (C) 2022 Land Schleswig-Holstein
     *
     * Lizenziert unter der EUPL, Version 1.2 oder - sobald
     * diese von der Europäischen Kommission genehmigt wurden -
     * Folgeversionen der EUPL ("Lizenz");
     * Sie dürfen dieses Werk ausschließlich gemäß
     * dieser Lizenz nutzen.
     * Eine Kopie der Lizenz finden Sie hier:
     *
     * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
     *
     * Sofern nicht durch anwendbare Rechtsvorschriften
     * gefordert oder in schriftlicher Form vereinbart, wird
     * die unter der Lizenz verbreitete Software "so wie sie
     * ist", OHNE JEGLICHE GEWÄHRLEISTUNG ODER BEDINGUNGEN -
     * ausdrücklich oder stillschweigend - verbreitet.
     * Die sprachspezifischen Genehmigungen und Beschränkungen
     * unter der Lizenz sind dem Lizenztext zu entnehmen.
     */
    syntax = "proto3";
    
    package de.itvsh.ozg.mail.postfach;
    
    import "callcontext.proto";
    
    option java_multiple_files = true;
    option java_package = "de.itvsh.ozg.mail.postfach";
    option java_outer_classname = "PostfachMailModelProto";
    
    message GrpcSendPostfachMailRequest {
    	de.itvsh.ozg.pluto.grpc.command.GrpcCallContext context = 1;
    	string commandId = 2;
    	GrpcPostfachMail mail = 5;
    }
    
    message GrpcSendPostfachMailResponse {
    }
    
    message GrpcFindPostfachMailRequest {
    	de.itvsh.ozg.pluto.grpc.command.GrpcCallContext context = 1;
    	string nachrichtId = 2;
    }
    message GrpcFindPostfachMailResponse {
    	GrpcPostfachMail nachricht = 1;
    }
    
    message GrpcFindPostfachMailsRequest {
    	de.itvsh.ozg.pluto.grpc.command.GrpcCallContext context = 1;
    	string vorgangId = 2;
    }
    
    message GrpcFindPostfachMailsResponse {
    	repeated GrpcPostfachMail mails = 1;
    }
    
    enum GrpcDirection {
    	UNDEFINED = 0;
    	IN = 1;
    	OUT = 2;
    }
    
    message GrpcPostfachMail {
    	string id = 1;
    	string vorgangId = 2;
    	string postfachId = 3;
    	string createdAt = 4;
    	string createdBy = 5;
    	string sentAt = 6;
    	bool sentSuccessful = 7;
    	string messageCode = 8;
    	GrpcDirection direction = 9;
    	string subject = 10;
    	string mailBody = 11;
    	string replyOption = 12;
    	repeated string attachment = 13;
    }
    
    message GrpcResendPostfachMailRequest {
    	de.itvsh.ozg.pluto.grpc.command.GrpcCallContext context = 1;
    	string commandId = 2;
    	string postfachMailId = 3;
    }
    
    message GrpcResendPostfachMailResponse {
    }
    
    message GrpcIsPostfachConfiguredRequest {
    	de.itvsh.ozg.pluto.grpc.command.GrpcCallContext context = 1;
    }
    
    message GrpcIsPostfachConfiguredResponse {
    	bool isConfigured = 1;
    }