collection );
if ( item instanceof DSLVariableValue) {
target.add( item );
} else if ( item instanceof String ) {
//The only other possible legacy type is a String, so using toString() should be OK
DSLVariableValue value = new DSLVariableValue( item.toString() );
target.add( value );
}
}