Class DocumentsAttachedParser
java.lang.Object
com.persequor.saga.modules.ffmreader.parser.FfmLineParser
com.persequor.saga.modules.ffmreader.parser.DocumentsAttachedParser
A line in an FFM (Freight Forwarder Manifest) file that starts with /UMENTS ATTACHED. likely refers to Documents Attached to the shipment, specifically noting the inclusion of additional documents or paperwork. This can include invoices, customs declarations, or other necessary documents that accompany the shipment.
Possible Meaning of /UMENTS ATTACHED.:
UMENTS ATTACHED:
This could be a truncated form of "Documents Attached".
It signals that the cargo or shipment is associated with additional documents that need to be processed or are part of the shipment's record.
Content Following /UMENTS ATTACHED.:
There might be further details following this line that specify the type of documents or the reference numbers of the attached paperwork (e.g., customs documents, invoices, shipping bills, etc.).
Context in the Manifest:
Position in the File:
This line is likely to appear after an AWB or ULD line, suggesting that it refers to documents attached to that particular shipment or ULD.
Association:
It is associated with the most recent AWB or ULD that the line follows, and provides additional administrative details for that shipment.
Example Line:
/UMENTS ATTACHED. INVOICE 12345, CUSTOMS DECLARATION FORM 67890
Interpretation:
This indicates that documents like Invoice 12345 and Customs Declaration Form 67890 are attached to the preceding shipment, typically an AWB or ULD.
Parser Considerations:
Detect lines starting with /UMENTS ATTACHED. or similar variants.
Parse the list of documents or references following the prefix.
Associate the parsed documents with the most recent AWB or ULD.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
handle
(String line, Matcher matcher, FfmParserState state) Methods inherited from class com.persequor.saga.modules.ffmreader.parser.FfmLineParser
matched
-
Constructor Details
-
DocumentsAttachedParser
protected DocumentsAttachedParser()
-
-
Method Details
-
handle
- Specified by:
handle
in classFfmLineParser
-