]
RH Bugzilla Integration updated TEIID-3318:
-------------------------------------------
Bugzilla Update: Perform
Bugzilla References:
Support dynamically configuring the JDG protobuf schema
-------------------------------------------------------
Key: TEIID-3318
URL:
https://issues.jboss.org/browse/TEIID-3318
Project: Teiid
Issue Type: Enhancement
Components: Misc. Connectors
Affects Versions: 8.7.1, 8.10
Reporter: Van Halbert
Assignee: Van Halbert
Need to add the ability to dynamically configure the protobuf schema. A
snip-it from an example:
// generate and register a Protobuf schema and marshallers based on Note class and the
referenced classes (User class)
ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
String generatedSchema = protoSchemaBuilder
.fileName("sample_schema.proto")
.packageName("sample_package")
.addClass(Note.class)
.build(serCtx);
This would change the need for the user to implement marshallers.