use of io.atlasmap.xml.v2.XmlField in project atlasmap by atlasmap.
the class XmlXmlFieldActionsTest method createField.
protected Field createField(String path) {
XmlField f = new XmlField();
f.setPath(path);
f.setFieldType(FieldType.STRING);
return f;
}
use of io.atlasmap.xml.v2.XmlField in project atlasmap by atlasmap.
the class XmlJsonFlatMappingTest method generateXmlField.
protected XmlField generateXmlField(String parent, String path) {
XmlField xmlField = AtlasXmlModelFactory.createXmlField();
xmlField.setPath(parent + "@" + path);
return xmlField;
}
use of io.atlasmap.xml.v2.XmlField in project atlasmap by atlasmap.
the class XmlJavaFlatMappingTest method generateXmlField.
protected XmlField generateXmlField(String parent, String path) {
XmlField xmlField = AtlasXmlModelFactory.createXmlField();
xmlField.setPath(parent + "@" + path);
return xmlField;
}
Aggregations