Package com.google.appengine.tools.appstats.InternalProtos

Examples of com.google.appengine.tools.appstats.InternalProtos.EmptyProto


  @Override
  public String renderPayload(String packageName, String methodName, byte[] payload,
      boolean isRequestPayload) {
    try {
      EmptyProto proto = InternalProtos.EmptyProto.newBuilder().mergeFrom(payload).build();
      return TextFormat.printToString(proto.getUnknownFields());
    } catch (InvalidProtocolBufferException e) {
      return "???";
    }
  }
View Full Code Here

TOP

Related Classes of com.google.appengine.tools.appstats.InternalProtos.EmptyProto

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.