...
Code Block |
---|
- transform: AppendToAttribute xpath: //contains_JobObject[@stageType]/@name appendString: _I_AM_STAGE - transform: PrependToAttribute xpath: //contains_JobObject[@stageType]/@name prependString: MY_NAME_IS_ |
Transforms
The functions from which Recipes will be built are described below:
Transform | Description | Parameters |
---|---|---|
AppendToAttribute | Append a string value to an attribute. |
|
PrependToAttribute | Prepend a string value to an attribute. |
|
SearchAndReplace | Perform a regex search/replace on a text node (i.e. attribute or element with text content). If an element with child elements is provided by the xpath, the child elements will all be removed by this operation. |
|
InsertElement | Adds an XML element as a child to a specified parent element. |
|
InsertAttribute | Adds an attribute to an XML element. If the attribute already exists it will be overwritten. |
|
RemoveElement | Removes an XML element from the document. |
|
RemoveAttribute | Removes an attribute from an existing element.Parameters: |
|
Recipes
Change prefetch memory
...