davsclaus commented on code in PR #16214:
URL: https://github.com/apache/camel/pull/16214#discussion_r1836694890


##########
core/camel-core-model/src/main/java/org/apache/camel/model/MarshalDefinition.java:
##########
@@ -88,6 +89,7 @@ public class MarshalDefinition extends 
NoOutputDefinition<MarshalDefinition> imp
             @XmlElement(name = "custom", type = CustomDataFormat.class),
             @XmlElement(name = "fhirJson", type = FhirJsonDataFormat.class),
             @XmlElement(name = "fhirXml", type = FhirXmlDataFormat.class),
+            @XmlElement(name = "fury", type = FuryDataFormat.class),

Review Comment:
   You should add this in other places, just grep for one of the existing ie in 
Unmarshal and DataFormats definition classes



##########
core/camel-core-model/src/main/java/org/apache/camel/model/dataformat/FuryDataFormat.java:
##########
@@ -40,6 +40,19 @@ public class FuryDataFormat extends DataFormatDefinition {
     @Metadata(description = "Class of the java type to use when unmarshalling")
     private String unmarshalTypeName;
 
+    @XmlAttribute
+    @Metadata(description = "Whether to require register classes", 
defaultValue = "true", javaType = "java.lang.Boolean")
+    private String requireClassRegistration;
+
+    @XmlAttribute

Review Comment:
   this thread safe and autowired options could be labelled as advanced



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to