We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f2529b + 2ba8f10 commit 5d0d20aCopy full SHA for 5d0d20a
src/main/proto/license.proto
@@ -0,0 +1,22 @@
1
+syntax = "proto3";
2
+package io.axoniq.axonserver.grpc.license;
3
+option java_multiple_files = true;
4
+
5
+// Service for retrieving Axon Server license information.
6
+service LicenseService {
7
8
+ // Retrieves the current license details.
9
+ rpc GetLicense (GetLicenseRequest) returns (GetLicenseResponse);
10
11
+}
12
13
+// Request message for license operations.
14
+message GetLicenseRequest {
15
16
17
+// Response message containing the license information.
18
+message GetLicenseResponse {
19
20
+ // The full license content as a string.
21
+ string license_content = 1;
22
0 commit comments