summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KSSLSession.java
blob: a9bbfdcb57d458375fa4841eaff7eadccb6352a3 (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;

/**

 KDE SSL Session Information
 This class contains data about an SSL session.
 It is just used as a container that is taken from or passed to KSSL objects.
		@author George Staikos <staikos@kde.org>

		@short KDE SSL Session Information.
		@see KSSL

*/
public class KSSLSession implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected KSSLSession(Class dummy){}

	/**	
		  Convert to a base64 encoded string (so it can be copied safely)
			 		@short     Convert to a base64 encoded string (so it can be copied safely)
	*/
	public native String toString();
	/**	
		  Create as session ID object from a base64 encoded string.
			@param s the session id in base64 encoded ASN.1 format
				@return a KSSLSession object, or 0L on error
	 
		@short     Create as session ID object from a base64 encoded string.
	*/
	public static native KSSLSession fromString(String s);
	public KSSLSession() {
		newKSSLSession();
	}
	private native void newKSSLSession();
	/** 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();
}