|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectflux.file.FileActionResult
public class FileActionResult
Contains listings, in various formats, of files that underwent successful file actions.
Field Summary | |
---|---|
int |
failed_count
The number of files that failed in the file action operation. |
java.util.Map<java.lang.String,java.lang.String> |
filenames
Source to destination mapping of filenames for which the file action was carried out successfully. |
int |
successful_count
The number of files that succeeded in the file action operation. |
java.util.Map<java.net.URL,java.net.URL> |
url_objects
Source to destination mapping of URL objects for which the file action was carried out successfully. |
java.util.Map<java.lang.String,java.lang.String> |
url_strings
URLs of files for which the file action was carried out successfully. |
Constructor Summary | |
---|---|
FileActionResult()
|
Method Summary | |
---|---|
java.lang.Object |
clone()
Clones this file action result. |
void |
createdVariable()
Called immediately after a persistent variable has been created and populated with data from the database. |
void |
persistingVariable()
Called immediately before a persistent variable is stored to the database. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public transient java.util.Map<java.lang.String,java.lang.String> filenames
The keys of the map are the source filenames involved in the file action and the values of the map are the destination filenames.
The filenames in this field do not contain path information. They are simply basenames. Any directory information is omitted.
For example, if the full filename for a file involved in a successful file action is "/outputs/atlanta/settlements.zip", then the string contained in this field is simply "settlements.zip".
public transient java.util.Map<java.net.URL,java.net.URL> url_objects
This field contains the same information as the "url_strings" field, except file names are stored as URL objects, not strings.
The keys of the map are the source URL objects the file action was performed on and the values of the map are the destination URLs.
For all non-file protocols, this map contains the same information as the "url_strings" field.
public java.util.Map<java.lang.String,java.lang.String> url_strings
This field contains the same information as the "url_objects" field, except file names are stored as strings, not URL objects.
public int successful_count
public int failed_count
Constructor Detail |
---|
public FileActionResult()
Method Detail |
---|
public java.lang.Object clone() throws java.lang.CloneNotSupportedException
clone
in class java.lang.Object
java.lang.CloneNotSupportedException
- If an error occurs.public void createdVariable() throws java.lang.Exception
PersistentVariableListener
createdVariable
in interface PersistentVariableListener
java.lang.Exception
- If the additional initialization work failed and the
engine needs to be notified.public void persistingVariable()
PersistentVariableListener
persistingVariable
in interface PersistentVariableListener
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |