20 lines
523 B
Protocol Buffer
20 lines
523 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
option java_multiple_files = true;
|
||
|
option java_outer_classname = "AdjuticationServiceProto";
|
||
|
option java_package = "systems.archide.core.proto";
|
||
|
package adjutication_service;
|
||
|
|
||
|
service AdjuticationService {
|
||
|
rpc readAdjutication (IdMtlbMessage) returns (ProbeInformationOutput) {}
|
||
|
}
|
||
|
|
||
|
message ProbeInformationOutput {
|
||
|
optional int64 vitalRecordId = 1;
|
||
|
optional int64 fingerprintsId = 2;
|
||
|
optional int64 probeAfisId = 3;
|
||
|
optional int64 faceId = 4;
|
||
|
}
|
||
|
|
||
|
message IdMtlbMessage {
|
||
|
optional int64 mtlbId = 1;
|
||
|
}
|