FileParser2 Interface

This section provides the source code of the FileParser2 interface used by the Java class delivered with the Java package described earlier in this section. This interface has been added to include a way for the File Processor to retrieve the file creation date which can be stored inside the incoming file.


package com.splwg.d1.sgg.osb.common;
import java.util.Date;
public interface FileParser2 extends FileParser {
    /** 
     * FileProcessor usage method
     * Returns the File creation date and time stamp stored 
     * in the file
     * Returns null if information not available 
     */
    Date getCreationDateTime();
}