NIFI-907: Addressing comment on adding the value of the attribute within the enum
Signed-off-by: Matt Gilman <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/47e9a3cd Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/47e9a3cd Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/47e9a3cd Branch: refs/heads/master Commit: 47e9a3cdee58bf0187c2a461520926275319782e Parents: 690e674 Author: Joseph Percivall <[email protected]> Authored: Wed Sep 9 11:15:38 2015 -0400 Committer: Matt Gilman <[email protected]> Committed: Wed Sep 9 13:45:56 2015 -0400 ---------------------------------------------------------------------- nifi-docs/src/main/asciidoc/developer-guide.adoc | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/47e9a3cd/nifi-docs/src/main/asciidoc/developer-guide.adoc ---------------------------------------------------------------------- diff --git a/nifi-docs/src/main/asciidoc/developer-guide.adoc b/nifi-docs/src/main/asciidoc/developer-guide.adoc index 5df440a..46a2a95 100644 --- a/nifi-docs/src/main/asciidoc/developer-guide.adoc +++ b/nifi-docs/src/main/asciidoc/developer-guide.adoc @@ -127,23 +127,24 @@ can change, the FlowFile object is immutable. Modifications to a FlowFile are made possible by the ProcessSession. The core attributes for FlowFiles are defined in the `org.apache.nifi.flowfile.attributes.CoreAttributes` enum. -The most common attributes you'll see are filename, path and uuid. +The most common attributes you'll see are filename, path and uuid. The string in quotes is the value of the +attribute within the `CoreAttributes` enum. -- Filename: The filename of the FlowFile. The filename should not contain any directory structure. +- Filename ("filename"): The filename of the FlowFile. The filename should not contain any directory structure. -- UUID: A unique universally unique identifier (UUID) assigned to this FlowFile +- UUID ("uuid"): A unique universally unique identifier (UUID) assigned to this FlowFile -- Path: The FlowFile's path indicates the relative directory to which a FlowFile belongs and does not contain the filename +- Path ("path"): The FlowFile's path indicates the relative directory to which a FlowFile belongs and does not contain the filename -- Absolute Path: The FlowFile's absolute path indicates the absolute directory to which a FlowFile belongs and does not contain the filename +- Absolute Path ("absolute.path"): The FlowFile's absolute path indicates the absolute directory to which a FlowFile belongs and does not contain the filename -- Priority: A numeric value indicating the FlowFile priority +- Priority ("priority"): A numeric value indicating the FlowFile priority -- MIME Type: The MIME Type of this FlowFile +- MIME Type ("mime.type"): The MIME Type of this FlowFile -- Discard Reason: Specifies the reason that a FlowFile is being discarded +- Discard Reason ("discard.reason"): Specifies the reason that a FlowFile is being discarded -- Alternative Identifier: Indicates an identifier other than the FlowFile's UUID that is known to refer to this FlowFile. +- Alternative Identifier ("alternate.identifier"): Indicates an identifier other than the FlowFile's UUID that is known to refer to this FlowFile. [[process_session]] ==== ProcessSession
