Added The protobufs file and its java representation

Those protobufs are representing the messages that the registry will use when communicating with the bulletin-board

D:/Work/Wombat Working/voter-registry/comment-info.txt
vote-registry
Vladimir Eliezer Tokarev 2016-01-08 06:00:40 -08:00
parent a12685d757
commit 25eefc4b16
3 changed files with 2323 additions and 0 deletions

View File

@ -1 +1,3 @@
/bin/
/protoc.exe
/comment-info.txt

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,16 @@
message Tag {
required string content = 1;
}
message BasicMessage {
repeated Tag tag = 1;
optional bytes data = 2;
}
message BulletinBoardMessage {
repeated Tag tag = 1;
required BasicMessage basicMessage = 2;
optional bytes signatures = 3;
}