Skip to content

Commit 5d0d20a

Browse files
authored
Merge pull request #69 from AxonIQ/feature/license-proto
Add LicenseService gRPC API for license distribution
2 parents 4f2529b + 2ba8f10 commit 5d0d20a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/main/proto/license.proto

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)