Changeset 11313


Ignore:
Timestamp:
2006-03-08T17:04:51+13:00 (18 years ago)
Author:
kjdon
Message:

added two new job types - COPY_FILE_ONLY, which copies without trying to find metadata, and replace, which will move metadata from one file to another, and delete teh original file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/file/FileJob.java

    r11242 r11313  
    6262    /** An element of the job type enumeration indicating a rename action. */
    6363    static final public byte RENAME = 6;
     64    /** An element of the job type enumeration indicating a replace action. */
     65    static final public byte REPLACE = 7;
     66    /** An element of the job type enumeration indicating a copy action (but don't look for metadata. */
     67    static final public byte COPY_FILE_ONLY   = 8;
    6468
    6569    /** Constructor.
Note: See TracChangeset for help on using the changeset viewer.