diff options
author | Gökçen Eraslan <gokcen.eraslan@gmail.com> | 2012-07-07 19:08:48 +0300 |
---|---|---|
committer | Gökçen Eraslan <gokcen.eraslan@gmail.com> | 2012-07-07 19:08:48 +0300 |
commit | 786f730ea2608abaafdc656e2181d11e076b6648 (patch) | |
tree | ed3b30ce0e9ce3ec123621bf413f63417c31661b /offapi | |
parent | 64f614d93e0ff2b719e8dd360c0ed684569439bc (diff) |
Add new chooseCertificate method to XDocumentDigitalSignatures UNO interface.
This method shows the certificate choosing dialog previously used in ODF
signing and returns the selected certificate. For PDF signing support,
we need to reuse existing CertifacateChooser class of xmlsecurity module.
So the UNO api of ::com::sun::star::security::XDocumentDigitalSignatures is
extended.
Change-Id: I09f7d0ee180b16b588798820206780df359d133e
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/security/XDocumentDigitalSignatures.idl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl b/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl index be75dc1dee3d..8e9089e75495 100644 --- a/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl +++ b/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl @@ -143,7 +143,9 @@ interface XDocumentDigitalSignatures : com::sun::star::uno::XInterface void addAuthorToTrustedSources( [in] com::sun::star::security::XCertificate Author ); void addLocationToTrustedSources( [in] string Location ); - + /** This method shows CertificateChooser dialog, used by document and PDF signing + */ + com::sun::star::security::XCertificate chooseCertificate(); } ; |