summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KSSLX509Map.java
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-01-08 20:06:00 +0100
committerSlávek Banko <slavek.banko@axis.cz>2014-01-08 20:06:00 +0100
commit636f509299122d02087c6fd62e1e4a46dbd22026 (patch)
tree70e43efceeb5b00e7f19cdac8da44928bd2fb459 /tdejava/koala/org/trinitydesktop/koala/KSSLX509Map.java
parent719b61750c08343f530068ed4127623aeac71cf0 (diff)
downloadtdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.tar.gz
tdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.zip
Rename many classes to avoid conflicts with KDE
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/KSSLX509Map.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/KSSLX509Map.java62
1 files changed, 62 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/KSSLX509Map.java b/tdejava/koala/org/trinitydesktop/koala/KSSLX509Map.java
new file mode 100644
index 00000000..9b547668
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/KSSLX509Map.java
@@ -0,0 +1,62 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.qt.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 <staikos@kde.org>
+
+ @short X.509 Map Parser.
+ @see KSSL
+ @see KSSLCertificate
+
+*/
+public class KSSLX509Map implements QtSupport {
+ private long _qt;
+ private boolean _allocatedInJavaWorld = true;
+ protected KSSLX509Map(Class dummy){}
+
+ /**
+ Construct an X.509 Map
+ @param name the map to parse
+ @short Construct an X.
+ */
+ public KSSLX509Map(String name) {
+ newKSSLX509Map(name);
+ }
+ private native void newKSSLX509Map(String name);
+ /**
+ Set a value in the map
+ @param key the key
+ @param value the value
+ @short Set a value in the map
+ */
+ public native void setValue(String key, String value);
+ /**
+ Get the value of an entry in the map
+ @param key the key
+ @return the value
+
+ @short Get the value of an entry in the map
+ */
+ public native String getValue(String key);
+ /**
+ Reset (clear) the internal storage.
+ @param name if this is not empty, it will be parsed and used as
+ the new map internally
+ @short Reset (clear) the internal storage.
+ */
+ public native void reset(String name);
+ public native void reset();
+ /** 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();
+}