org.kde.koala
Class KSSLSession

java.lang.Object
  extended by org.kde.koala.KSSLSession
All Implemented Interfaces:
org.kde.qt.QtSupport

public class KSSLSession
extends java.lang.Object
implements 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
See Also:
KSSL

Constructor Summary
  KSSLSession()
           
protected KSSLSession(java.lang.Class dummy)
           
 
Method Summary
 void dispose()
          Delete the wrapped C++ instance ahead of finalize()
protected  void finalize()
          Deletes the wrapped C++ instance
static KSSLSession fromString(java.lang.String s)
          Create as session ID object from a base64 encoded string.
 boolean isDisposed()
          Has the wrapped C++ instance been deleted?
 java.lang.String toString()
          Convert to a base64 encoded string (so it can be copied safely)
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

KSSLSession

protected KSSLSession(java.lang.Class dummy)

KSSLSession

public KSSLSession()
Method Detail

toString

public java.lang.String toString()
Convert to a base64 encoded string (so it can be copied safely)

Overrides:
toString in class java.lang.Object

fromString

public static KSSLSession fromString(java.lang.String s)
Create as session ID object from a base64 encoded string.

Parameters:
s - the session id in base64 encoded ASN.1 format
Returns:
a KSSLSession object, or 0L on error

finalize

protected void finalize()
                 throws java.lang.InternalError
Deletes the wrapped C++ instance

Overrides:
finalize in class java.lang.Object
Throws:
java.lang.InternalError

dispose

public void dispose()
Delete the wrapped C++ instance ahead of finalize()


isDisposed

public boolean isDisposed()
Has the wrapped C++ instance been deleted?