public class TaggedOutputWriterAction extends Action
The TaggedOutputWriterAction will write a collection of key-value pairs to a file. It requires that each key-value pair be listed in the dictionary and it will write them as "key=value" in the file. The name of the file should be passed as a value in the dictionary with "iceTaggedOutputFileName" as the key. (Presumably no one else would ever use such a key name...) It assumes that the size of the file is relatively small and that it can therefore be written quickly enough that a separate thread is not needed.
Constructor and Description |
---|
TaggedOutputWriterAction()
The constructor
|
Modifier and Type | Method and Description |
---|---|
FormStatus |
cancel()
(non-Javadoc)
|
FormStatus |
execute(java.util.Dictionary<java.lang.String,java.lang.String> dictionary)
This operation executes the Action based on the information provided in
the dictionary.
|
getForm, getStatus, submitForm
public FormStatus execute(java.util.Dictionary<java.lang.String,java.lang.String> dictionary)
Action
This operation executes the Action based on the information provided in the dictionary. Subclasses must implement this operation and should publish the exact keys and values that they require to perform their function in their documentation.
public FormStatus cancel()
cancel
in class Action
The ItemStatus value that specifies whether or not the Action was canceled successfully.
Action.cancel()