org.kde.koala

Class KSSLX509Map

public class KSSLX509Map extends Object implements QtSupport

X.509 Map Parsing Class This class is used to parse and store a map as used in X.509 certificates. It is of the form /name=value/name=value/name=value

Author: George Staikos

See Also: KSSL KSSLCertificate

UNKNOWN: X.509 Map Parser.

Constructor Summary
protected KSSLX509Map(Class dummy)
KSSLX509Map(String name)
Construct an X.509 Map
Method Summary
voiddispose()
Delete the wrapped C++ instance ahead of finalize()
protected voidfinalize()
Deletes the wrapped C++ instance
StringgetValue(String key)
Get the value of an entry in the map
booleanisDisposed()
Has the wrapped C++ instance been deleted?
voidreset(String name)
Reset (clear) the internal storage.
voidreset()
voidsetValue(String key, String value)
Set a value in the map

Constructor Detail

KSSLX509Map

protected KSSLX509Map(Class dummy)

KSSLX509Map

public KSSLX509Map(String name)
Construct an X.509 Map

Parameters: name the map to parse

UNKNOWN: Construct an X.

Method Detail

dispose

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

finalize

protected void finalize()
Deletes the wrapped C++ instance

getValue

public String getValue(String key)
Get the value of an entry in the map

Parameters: key the key

Returns: the value

UNKNOWN: Get the value of an entry in the map

isDisposed

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

reset

public void reset(String name)
Reset (clear) the internal storage.

Parameters: name if this is not empty, it will be parsed and used as the new map internally

UNKNOWN: Reset (clear) the internal storage.

reset

public void reset()

setValue

public void setValue(String key, String value)
Set a value in the map

Parameters: key the key value the value

UNKNOWN: Set a value in the map