Creates a new mediator with the given external resolver and document last modified date. @param ssiExternalResolver the external resolver for file/variable access @param lastModifiedDate the last modified date of the document being processed
(SSIExternalResolver ssiExternalResolver, long lastModifiedDate)
| 109 | * @param lastModifiedDate the last modified date of the document being processed |
| 110 | */ |
| 111 | public SSIMediator(SSIExternalResolver ssiExternalResolver, long lastModifiedDate) { |
| 112 | this.ssiExternalResolver = ssiExternalResolver; |
| 113 | this.lastModifiedDate = lastModifiedDate; |
| 114 | setConfigTimeFmt(DEFAULT_CONFIG_TIME_FMT, true); |
| 115 | } |
| 116 | |
| 117 | |
| 118 | /** |
nothing calls this directly
no test coverage detected