Skip to content

Generate Business Object Format DDL Collection

Nate Weisz edited this page Oct 6, 2015 · 3 revisions

Retrieves the DDL to initialize the specified type of the database system (e.g. Hive) by creating tables for a collection of business object formats.

Please refer to Business Object Format Generate DDL Collection Post for more information.

Delegate Class

org.finra.dm.service.activiti.task.GenerateBusinessObjectFormatDdlCollection

Input Parameters

Name Required Accepted Values Default Value Case Sensitive Description
contentType Y xml, json N Indicator whether XML or JSON is provided for businessObjectFormatDdlCollectionRequest.
businessObjectFormatDdlCollectionRequest Y N The business object format generate DDL request. Please refer to Business Object Format Generate DDL Collection Post for details.

Output Parameters

Name Description
{taskId}_businessObjectFormatDdlCollection DDL code generated for the entire collection of business objects. Please refer to Business Object Format Generate DDL Collection Post for details.

Sample Usage in Activiti XML

<serviceTask id="GenerateBusinessObjectFormatDdlCollectionTask" name="Generate Business Object Format DDL Collection" activiti:class="org.finra.dm.service.activiti.task.GenerateBusinessObjectFormatDdlCollection">
   <extensionElements>
      <activiti:field name="contentType" stringValue="xml"/>
      <activiti:field name="businessObjectFormatDdlCollectionRequest" expression="${businessObjectFormatDdlCollectionRequest}"/>
   </extensionElements>
</serviceTask>
Clone this wiki locally