MNT-24883 office pdf render header-fix

This commit is contained in:
bsayan2
2025-05-21 12:13:51 +05:30
parent 0c534f1081
commit f6d03a18a2
5 changed files with 94 additions and 6 deletions

View File

@@ -48,6 +48,7 @@ public class TransformRequest implements Serializable
private int schema;
private Map<String, String> transformRequestOptions = new HashMap<>();
private InternalContext internalContext;
private String sourceFileName;
// regions [Accessors]
public String getRequestId()
@@ -160,6 +161,14 @@ public class TransformRequest implements Serializable
this.internalContext = internalContext;
}
public String getSourceFileName() {
return sourceFileName;
}
public void setSourceFileName(String sourceFileName) {
this.sourceFileName = sourceFileName;
}
//endregion
@Override