Files
stream-applications/applications/processor/script-processor
Chris Bono d7ba24fa01 GH-252: Remove legacy config properties metadata files
This commit removes all legacy config props metadata files
named `dataflow-configuration-metadata-whitelist.properties`.

This is safe with respect to SCDF because stream apps 4.x
require SCDF 2.11.x to launch the apps. Therefore, no existing
SCDF customers on an older SCDF version (that only supports
the legacy file) will be impacted - the users will all be on
the latest version of SCDF.

Fixes #252

* Renamed spring-configuration-metadata-whitelist.properties (removed "-whitelist")

* Renamed spring-configuration-metadata.properties to
dataflow-configuration-metadata.properties

* Fix rsocket

* Rsocket props now added back in

* Rename rsocket-sink metadate file to non-legacy format
2023-06-05 14:35:43 -04:00
..
2020-05-18 16:11:44 -04:00

//tag::ref-doc[]
= Script Processor

Processor that transforms messages using a script. The script body is supplied directly
as a property value. The language of the script can be specified (groovy/javascript/ruby/python).

== Options

The **$$script-processor$$** $$processor$$ has the following options:

//tag::configuration-properties[]
$$script-processor.language$$:: $$Language of the text in the script property. Supported: groovy, javascript, ruby, python.$$ *($$String$$, default: `$$<none>$$`)*
$$script-processor.script$$:: $$Text of the script.$$ *($$String$$, default: `$$<none>$$`)*
$$script-processor.variables$$:: $$Variable bindings as a new line delimited string of name-value pairs, e.g. 'foo=bar\n baz=car'.$$ *($$Properties$$, default: `$$<none>$$`)*
$$script-processor.variables-location$$:: $$The location of a properties file containing custom script variable bindings.$$ *($$Resource$$, default: `$$<none>$$`)*
//end::configuration-properties[]

//end::ref-doc[]