use of com.opentext.ia.sdk.dto.export.ExportConfiguration in project infoarchive-sip-sdk by Enterprise-Content-Management.
the class PropertiesBasedApplicationConfigurer method fillExportConfigurationTransformation.
private void fillExportConfigurationTransformation(ExportConfiguration config, String name) {
ExportConfiguration.Transformation result = new ExportConfiguration.Transformation();
result.setPortName(templatedString(EXPORT_CONFIG_TRANSFORMATIONS_TEMPLATE_PORTNAME_TEMPLATE, config.getName(), name));
result.setName(cache.getObjectUri(TYPE_EXPORT_TRANSFORMATION, templatedString(EXPORT_CONFIG_TRANSFORMATIONS_TEMPLATE_TRANSFORMATION_TEMPLATE, config.getName(), name)));
addTransformation(config, result);
}
Aggregations