use of org.talend.core.model.components.conversions.AddPropertyUniqueKeyFortUniqRowConversion in project tdi-studio-se by Talend.
the class UpgradetUniqRowMigrationTask method execute.
public ExecutionResult execute(Item item) {
ProcessType processType = getProcessType(item);
if (getProject().getLanguage() != ECodeLanguage.PERL || processType == null) {
return ExecutionResult.NOTHING_TO_DO;
}
try {
//$NON-NLS-1$
IComponentFilter filter1 = new NameComponentFilter("tUniqRow");
//$NON-NLS-1$
IComponentConversion removeProperty = new RemovePropertyComponentConversion("CASE_SENSITIVE");
//$NON-NLS-1$ //$NON-NLS-2$
IComponentConversion addProperty = new AddPropertyUniqueKeyFortUniqRowConversion("UNIQUE_KEY", "TABLE");
ModifyComponentsAction.searchAndModify(item, processType, filter1, Arrays.<IComponentConversion>asList(removeProperty, addProperty));
return ExecutionResult.SUCCESS_NO_ALERT;
} catch (Exception e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
Aggregations