summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KSSLPKCS7.java
blob: db468b4248b79e46c57c0007af8c1e1713080a0d (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

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

/**

 KDE PKCS#7 Certificate
 This class represents a PKCS#7 certificate
		@author George Staikos <staikos@kde.org>

		@short KDE PKCS#7 Certificate.
		@see KSSL

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

	/**	
		  The name of this certificate.  This can be used to refer to the
		  certificate instead of passing the object itself.
				@return the name of the certificate
	 
		@short     The name of this certificate.
	*/
	public native String name();
	/**	
		  Convert to a Base64 string.
				@return the PKCS#7 object in base64 form
	 
		@short     Convert to a Base64 string.
	*/
	public native String toString();
	/**	
		  Raw set the PKCS7 object.
			@param c the PKCS7 object
				 		@short     Raw set the PKCS7 object.
	*/
	// void setCert(PKCS7* arg1); >>>> NOT CONVERTED
	/**	
		  Get the bottom level X.509 certificate.
				@return the certificate, or NULL on failure

		@short     Get the bottom level X.
		@see KSSLCertificate
	*/
	public native KSSLCertificate getCertificate();
	/**	
		  Get the certificate chain.
				@return the certificate chain

		@short     Get the certificate chain.
		@see KSSLCertChain
	*/
	public native KSSLCertChain getChain();
	/**	
		  Write the PKCS#7 to a file in raw mode.
			@param filename the filename to write
				@return true on success
	 
		@short     Write the PKCS#7 to a file in raw mode.
	*/
	public native boolean toFile(String filename);
	/**	
		  Return true if the chain is valid.
			 		@short     Return true if the chain is valid.
	*/
	public native boolean isValid();
	/**	
		  Create a KSSLPKCS7 object from a Base64 in a String.
			@param base64 the base64 representation of the certificate
				@return a PKCS#7 object, or NULL on failure
	 
		@short     Create a KSSLPKCS7 object from a Base64 in a String.
	*/
	public static native KSSLPKCS7 fromString(String base64);
	/**	
		  Create a KSSLPKCS7 object by reading a PKCS#7 file.
			@param filename the filename to read the certificate from
				@return a PKCS#7 object, or NULL on failure
	 
		@short     Create a KSSLPKCS7 object by reading a PKCS#7 file.
	*/
	public static native KSSLPKCS7 loadCertFile(String filename);
	public KSSLPKCS7() {
		newKSSLPKCS7();
	}
	private native void newKSSLPKCS7();
	/** 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();
}