Skip to content

Commit

Permalink
feat: make autogram document implements dssdocument
Browse files Browse the repository at this point in the history
  • Loading branch information
xhyrom committed Dec 18, 2024
1 parent 9e84caf commit 5803279
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,17 @@ public char[] getSigningPassword() {
return hasOpenDocumentPassword() ? openDocumentPassword : masterPassword;
}

@Override
public String getName() {
return document.getName();
}

@Override
public void setName(String s) {

document.setName(s);
}

@Override
public MimeType getMimeType() {
return document.getMimeType();
}
Expand All @@ -70,6 +72,7 @@ public String getDigest(DigestAlgorithm digestAlgorithm) {
return document.getDigest(digestAlgorithm);
}

@Override
public InputStream openStream() {
return document.openStream();
}
Expand Down

0 comments on commit 5803279

Please sign in to comment.