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, 0 insertions, 69 deletions
diff --git a/kdejava/koala/org/kde/koala/KSSLConnectionInfo.java b/kdejava/koala/org/kde/koala/KSSLConnectionInfo.java
deleted file mode 100644
index fc5d8950..00000000
--- a/kdejava/koala/org/kde/koala/KSSLConnectionInfo.java
+++ /dev/null
@@ -1,69 +0,0 @@
-//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();
-}