17 lines
373 B
Protocol Buffer
17 lines
373 B
Protocol Buffer
/**
|
|
* Copyright (C) 2009-2010 Scalable Solutions AB <http://scalablesolutions.se>
|
|
*/
|
|
|
|
package se.scalablesolutions.akka.api;
|
|
|
|
/*
|
|
Compile with:
|
|
cd ./akka-fun-test-java/src/test/java
|
|
protoc se/scalablesolutions/akka/api/ProtobufProtocol.proto --java_out .
|
|
*/
|
|
|
|
message ProtobufPOJO {
|
|
required uint64 id = 1;
|
|
required string name = 2;
|
|
required bool status = 3;
|
|
}
|