@org.apache.camel.k.annotation.yaml.YAMLMixIn(org.apache.camel.model.dataformat.XStreamDataFormat.class)

Here are the examples of the java api @org.apache.camel.k.annotation.yaml.YAMLMixIn(org.apache.camel.model.dataformat.XStreamDataFormat.class) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : XStreamDataFormatMixIn.java
with Apache License 2.0
from apache

@YAMLMixIn(org.apache.camel.model.dataformat.XStreamDataFormat.clreplaced)
public abstract clreplaced XStreamDataFormatMixIn {

    @JsonIgnore
    public abstract void setConverters(Map<String, String> converters);

    @JsonIgnore
    public abstract void setAliases(Map<String, String> aliases);

    @JsonIgnore
    public abstract void setOmitFields(Map<String, String> omitFields);

    @JsonIgnore
    public abstract void setImplicitCollections(Map<String, String> implicitCollections);
}