00001
00002
00003
00004
00005
00006
00007
00008
00009 package com.orionsec.jpkif;
00010
00011 public class CPKIFTBSRequest extends IPKIFHasExtensions {
00012 private long swigCPtr;
00013
00014 public CPKIFTBSRequest(long cPtr, boolean cMemoryOwn) {
00015 super(pkif_moduleJNI.CPKIFTBSRequest_SWIGUpcast(cPtr), cMemoryOwn);
00016 swigCPtr = cPtr;
00017 }
00018
00019 public static long getCPtr(CPKIFTBSRequest obj) {
00020 return (obj == null) ? 0 : obj.swigCPtr;
00021 }
00022
00023 protected void finalize() {
00024 delete();
00025 }
00026
00027 public synchronized void delete() {
00028 if (swigCPtr != 0) {
00029 if (swigCMemOwn) {
00030 swigCMemOwn = false;
00031 pkif_moduleJNI.delete_CPKIFTBSRequest(swigCPtr);
00032 }
00033 swigCPtr = 0;
00034 }
00035 super.delete();
00036 }
00037
00038 public CPKIFTBSRequest() {
00039 this(pkif_moduleJNI.new_CPKIFTBSRequest__SWIG_0(), true);
00040 }
00041
00042 public CPKIFTBSRequest(CPKIFBufferPtr r) {
00043 this(pkif_moduleJNI.new_CPKIFTBSRequest__SWIG_1(CPKIFBufferPtr.getCPtr(r), r), true);
00044 }
00045
00046 public int GetVersion() {
00047 return pkif_moduleJNI.CPKIFTBSRequest_GetVersion(swigCPtr, this);
00048 }
00049
00050 public void SetRequestorName(CPKIFGeneralNamePtr gn) {
00051 pkif_moduleJNI.CPKIFTBSRequest_SetRequestorName(swigCPtr, this, CPKIFGeneralNamePtr.getCPtr(gn), gn);
00052 }
00053
00054 public CPKIFGeneralNamePtr GetRequestorName() {
00055 return new CPKIFGeneralNamePtr(pkif_moduleJNI.CPKIFTBSRequest_GetRequestorName(swigCPtr, this), true);
00056 }
00057
00058 public void AddRequest(CPKIFRequestPtr req) {
00059 pkif_moduleJNI.CPKIFTBSRequest_AddRequest(swigCPtr, this, CPKIFRequestPtr.getCPtr(req), req);
00060 }
00061
00062 public void GetRequests(SWIGTYPE_p_std__vectorT_boost__shared_ptrT_CPKIFRequest_t_PKIFAllocT_boost__shared_ptrT_CPKIFRequest_t_t_t reqs) {
00063 pkif_moduleJNI.CPKIFTBSRequest_GetRequests(swigCPtr, this, SWIGTYPE_p_std__vectorT_boost__shared_ptrT_CPKIFRequest_t_PKIFAllocT_boost__shared_ptrT_CPKIFRequest_t_t_t.getCPtr(reqs));
00064 }
00065
00066 public void SetNonce(CPKIFBufferPtr nonce) {
00067 pkif_moduleJNI.CPKIFTBSRequest_SetNonce(swigCPtr, this, CPKIFBufferPtr.getCPtr(nonce), nonce);
00068 }
00069
00070 public CPKIFBufferPtr GetNonce() {
00071 return new CPKIFBufferPtr(pkif_moduleJNI.CPKIFTBSRequest_GetNonce(swigCPtr, this), true);
00072 }
00073
00074 public void SetGenerateNonce(boolean generateNonce, IPKIFColleague m) {
00075 pkif_moduleJNI.CPKIFTBSRequest_SetGenerateNonce__SWIG_0(swigCPtr, this, generateNonce, IPKIFColleague.getCPtr(m), m);
00076 }
00077
00078 public void SetGenerateNonce(boolean generateNonce) {
00079 pkif_moduleJNI.CPKIFTBSRequest_SetGenerateNonce__SWIG_1(swigCPtr, this, generateNonce);
00080 }
00081
00082 public boolean GetGenerateNonce() {
00083 return pkif_moduleJNI.CPKIFTBSRequest_GetGenerateNonce(swigCPtr, this);
00084 }
00085
00086 public CPKIFBufferPtr Encode() {
00087 return new CPKIFBufferPtr(pkif_moduleJNI.CPKIFTBSRequest_Encode(swigCPtr, this), true);
00088 }
00089
00090 public void GetExtension(CPKIFOID oid, CPKIFX509ExtensionPtr ref) {
00091 pkif_moduleJNI.CPKIFTBSRequest_GetExtension(swigCPtr, this, CPKIFOID.getCPtr(oid), oid, CPKIFX509ExtensionPtr.getCPtr(ref), ref);
00092 }
00093
00094 public void GetExtensionByOID(CPKIFOID oid, CPKIFX509ExtensionPtr ref) {
00095 pkif_moduleJNI.CPKIFTBSRequest_GetExtensionByOID(swigCPtr, this, CPKIFOID.getCPtr(oid), oid, CPKIFX509ExtensionPtr.getCPtr(ref), ref);
00096 }
00097
00098 public void GetEncodedExtensions(CPKIFBufferPtr buf) {
00099 pkif_moduleJNI.CPKIFTBSRequest_GetEncodedExtensions(swigCPtr, this, CPKIFBufferPtr.getCPtr(buf), buf);
00100 }
00101
00102 }