...
- Change the configuration parameter
field
to be calledfields
since it will now support multiple comma-separated field names (but can support backward compatibility for some time). - Add new configuration parameters
format.input
to allow for a pattern format which supports multiple variations to parse a string, andformat.output
to specify the exact string format to output in the case of converting from a Date/Time to a string. - The configuration parameter
format
could possibly be removed at a later date (but remain remains for now for backwards compatibility), or could also be used to specify both bothformat.input
andformat.output
at the same time for more simple scenarios (assuming you just have a single string input format). - As general housekeeping, the
TimestampConverter
class should also be updated at the same time to include publicConfigNames
andConfigDefaults
ConfigName
andConfigDefault
interfaces instead of various public string class attributes for the configuration properties, similar to what has been done in several of the other SMTs (likeReplaceField
for example).
...