use of io.protostuff.compiler.model.Service in project incubator-servicecomb-java-chassis by apache.
the class ProtoMapper method getResponseMessage.
public Message getResponseMessage(String operationId) {
Service service = proto.getServices().get(0);
ServiceMethod serviceMethod = service.getMethod(operationId);
return serviceMethod.getReturnType();
}
Aggregations