summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/ucb
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2007-11-07 08:58:25 +0000
committerRüdiger Timm <rt@openoffice.org>2007-11-07 08:58:25 +0000
commit8fd68af85c86fb158a902da76c0c7a00a1f5a39b (patch)
tree13f91b2a20c84af95fe4d97f9df43718dc5dd425 /offapi/com/sun/star/ucb
parent7879e6ca8c643f6be03d1e1260b2d6e84b0e2919 (diff)
INTEGRATION: CWS tkr05_SRC680 (1.1.2); FILE ADDED
2007/10/01 07:37:07 tkr 1.1.2.2: #31053#: HTTPS Support 2007/09/20 10:58:15 tkr 1.1.2.1: #i31053#: WebDAV HTTPS Support
Diffstat (limited to 'offapi/com/sun/star/ucb')
-rwxr-xr-xoffapi/com/sun/star/ucb/CertificateValidationRequest.idl73
1 files changed, 73 insertions, 0 deletions
diff --git a/offapi/com/sun/star/ucb/CertificateValidationRequest.idl b/offapi/com/sun/star/ucb/CertificateValidationRequest.idl
new file mode 100755
index 000000000000..af87221e975a
--- /dev/null
+++ b/offapi/com/sun/star/ucb/CertificateValidationRequest.idl
@@ -0,0 +1,73 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: CertificateValidationRequest.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: rt $ $Date: 2007-11-07 09:58:25 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ ************************************************************************/
+#ifndef __com_sun_star_ucb_CertificateValidationRequest_idl__
+#define __com_sun_star_ucb_CertificateValidationRequest_idl__
+
+#ifndef __com_sun_star_task_ClassifiedInteractionRequest_idl__
+#include <com/sun/star/task/ClassifiedInteractionRequest.idl>
+#endif
+
+#ifndef __com_sun_star_security_XCertificate_idl__
+#include <com/sun/star/security/XCertificate.idl>
+#endif
+
+//=============================================================================
+
+module com { module sun { module star { module ucb {
+
+//=============================================================================
+/** An error specifing an invalid certificate.
+*/
+exception CertificateValidationRequest: com::sun::star::task::ClassifiedInteractionRequest
+{
+ //-------------------------------------------------------------------------
+ /** This value describes the validity of the certificate.
+ */
+ long CertificateValidity;
+
+ //-------------------------------------------------------------------------
+ /** The certificate himself.
+ */
+ com::sun::star::security::XCertificate Certificate;
+
+ string HostName;
+
+};
+
+//=============================================================================
+
+}; }; }; };
+
+#endif