blob: fc5d8950121e7a82924fa4f8f9349d809ea0eb8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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();
}
|