summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KSSLConnectionInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KSSLConnectionInfo.java')
-rw-r--r--kdejava/koala/org/kde/koala/KSSLConnectionInfo.java69
1 files changed, 69 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KSSLConnectionInfo.java b/kdejava/koala/org/kde/koala/KSSLConnectionInfo.java
new file mode 100644
index 00000000..fc5d8950
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KSSLConnectionInfo.java
@@ -0,0 +1,69 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ KDE SSL Connection Information
+ This class contains the information about an SSL connection. It is
+ generally referenced through KSSL.
+ @author George Staikos <staikos@kde.org>
+
+ @short KDE SSL Connection Information.
+ @see KSSL
+
+*/
+public class KSSLConnectionInfo implements QtSupport {
+ private long _qt;
+ private boolean _allocatedInJavaWorld = true;
+ protected KSSLConnectionInfo(Class dummy){}
+
+ /**
+ Get the cipher in use.
+ @return the cipher in use
+
+ @short Get the cipher in use.
+ */
+ public native String getCipher();
+ /**
+ Describe the cipher in use.
+ @return the cipher description (from OpenSSL)
+
+ @short Describe the cipher in use.
+ */
+ public native String getCipherDescription();
+ /**
+ Get the version of the cipher in use.
+ @return the version of the cipher
+
+ @short Get the version of the cipher in use.
+ */
+ public native String getCipherVersion();
+ /**
+ Get the number of bits of the cipher that are actually used.
+ @return the number of bits in use
+
+ @short Get the number of bits of the cipher that are actually used.
+ */
+ public native int getCipherUsedBits();
+ /**
+ Get bit-size of the cipher
+ @return the number of bits
+
+ @short Get bit-size of the cipher
+ */
+ public native int getCipherBits();
+ public KSSLConnectionInfo() {
+ newKSSLConnectionInfo();
+ }
+ private native void newKSSLConnectionInfo();
+ protected native void clean();
+ /** Deletes the wrapped C++ instance */
+ protected native void finalize() throws InternalError;
+ /** Delete the wrapped C++ instance ahead of finalize() */
+ public native void dispose();
+ /** Has the wrapped C++ instance been deleted? */
+ public native boolean isDisposed();
+}