Java Code Examples for org.camunda.spin.DataFormats#XML_DATAFORMAT_NAME
The following examples show how to use
org.camunda.spin.DataFormats#XML_DATAFORMAT_NAME .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DomXmlDataFormatProvider.java From camunda-spin with Apache License 2.0 | 4 votes |
public String getDataFormatName() { return DataFormats.XML_DATAFORMAT_NAME; }
Example 2
Source File: DomXmlDataFormatProvider.java From camunda-spin with Apache License 2.0 | 4 votes |
public DataFormat<?> createInstance() { return new DomXmlDataFormat(DataFormats.XML_DATAFORMAT_NAME); }
Example 3
Source File: XmlDomDataFormatReaderTest.java From camunda-spin with Apache License 2.0 | 4 votes |
@Before public void setUp() { DomXmlDataFormat domXmlDataFormat = new DomXmlDataFormat(DataFormats.XML_DATAFORMAT_NAME); reader = domXmlDataFormat.getReader(); }
Example 4
Source File: XmlValueImpl.java From camunda-bpm-platform with Apache License 2.0 | 4 votes |
public XmlValueImpl(String value) { this(null, value, DataFormats.XML_DATAFORMAT_NAME, false); }