CPKIFTSTInfo.java

Go to the documentation of this file.
00001 /* ----------------------------------------------------------------------------
00002  * This file was automatically generated by SWIG (http://www.swig.org).
00003  * Version 2.0.1
00004  *
00005  * Do not make changes to this file unless you know what you are doing--modify
00006  * the SWIG interface file instead.
00007  * ----------------------------------------------------------------------------- */
00008 
00009 package com.orionsec.jpkif;
00010 
00011 public class CPKIFTSTInfo extends IPKIFHasExtensions {
00012   private long swigCPtr;
00013 
00014   public CPKIFTSTInfo(long cPtr, boolean cMemoryOwn) {
00015     super(pkif_moduleJNI.CPKIFTSTInfo_SWIGUpcast(cPtr), cMemoryOwn);
00016     swigCPtr = cPtr;
00017   }
00018 
00019   public static long getCPtr(CPKIFTSTInfo 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_CPKIFTSTInfo(swigCPtr);
00032       }
00033       swigCPtr = 0;
00034     }
00035     super.delete();
00036   }
00037 
00038   public CPKIFTSTInfo() {
00039     this(pkif_moduleJNI.new_CPKIFTSTInfo(), true);
00040   }
00041 
00042   public int GetVersion() {
00043     return pkif_moduleJNI.CPKIFTSTInfo_GetVersion(swigCPtr, this);
00044   }
00045 
00046   public void SetPolicy(CPKIFOIDPtr policy) {
00047     pkif_moduleJNI.CPKIFTSTInfo_SetPolicy(swigCPtr, this, CPKIFOIDPtr.getCPtr(policy), policy);
00048   }
00049 
00050   public CPKIFOIDPtr GetPolicy() {
00051     return new CPKIFOIDPtr(pkif_moduleJNI.CPKIFTSTInfo_GetPolicy(swigCPtr, this), true);
00052   }
00053 
00054   public void SetMessageImprint(CPKIFMessageImprintPtr messageImprint) {
00055     pkif_moduleJNI.CPKIFTSTInfo_SetMessageImprint(swigCPtr, this, CPKIFMessageImprintPtr.getCPtr(messageImprint), messageImprint);
00056   }
00057 
00058   public CPKIFMessageImprintPtr GetMessageImprint() {
00059     return new CPKIFMessageImprintPtr(pkif_moduleJNI.CPKIFTSTInfo_GetMessageImprint(swigCPtr, this), true);
00060   }
00061 
00062   public void SetSerialNumber(CPKIFStringPtr serialNumber) {
00063     pkif_moduleJNI.CPKIFTSTInfo_SetSerialNumber(swigCPtr, this, CPKIFStringPtr.getCPtr(serialNumber), serialNumber);
00064   }
00065 
00066   public String GetSerialNumber() {
00067     return pkif_moduleJNI.CPKIFTSTInfo_GetSerialNumber(swigCPtr, this);
00068   }
00069 
00070   public void SetGeneralizedTime(CPKIFTimePtr genTime) {
00071     pkif_moduleJNI.CPKIFTSTInfo_SetGeneralizedTime(swigCPtr, this, CPKIFTimePtr.getCPtr(genTime), genTime);
00072   }
00073 
00074   public void GetExtensionByOID(CPKIFOID oid, CPKIFX509ExtensionPtr ref) {
00075     pkif_moduleJNI.CPKIFTSTInfo_GetExtensionByOID(swigCPtr, this, CPKIFOID.getCPtr(oid), oid, CPKIFX509ExtensionPtr.getCPtr(ref), ref);
00076   }
00077 
00078   public void GetEncodedExtensions(CPKIFBufferPtr buf) {
00079     pkif_moduleJNI.CPKIFTSTInfo_GetEncodedExtensions(swigCPtr, this, CPKIFBufferPtr.getCPtr(buf), buf);
00080   }
00081 
00082   public CPKIFTimePtr GetGeneralizedTime() {
00083     return new CPKIFTimePtr(pkif_moduleJNI.CPKIFTSTInfo_GetGeneralizedTime(swigCPtr, this), true);
00084   }
00085 
00086   public void SetAccuracy(CPKIFAccuracyPtr accuracy) {
00087     pkif_moduleJNI.CPKIFTSTInfo_SetAccuracy(swigCPtr, this, CPKIFAccuracyPtr.getCPtr(accuracy), accuracy);
00088   }
00089 
00090   public CPKIFAccuracyPtr GetAccuracy() {
00091     return new CPKIFAccuracyPtr(pkif_moduleJNI.CPKIFTSTInfo_GetAccuracy(swigCPtr, this), true);
00092   }
00093 
00094   public void SetOrdering(boolean ordering) {
00095     pkif_moduleJNI.CPKIFTSTInfo_SetOrdering(swigCPtr, this, ordering);
00096   }
00097 
00098   public boolean GetOrdering() {
00099     return pkif_moduleJNI.CPKIFTSTInfo_GetOrdering(swigCPtr, this);
00100   }
00101 
00102   public void SetNonce(CPKIFStringPtr nonce) {
00103     pkif_moduleJNI.CPKIFTSTInfo_SetNonce(swigCPtr, this, CPKIFStringPtr.getCPtr(nonce), nonce);
00104   }
00105 
00106   public String GetNonce() {
00107     return pkif_moduleJNI.CPKIFTSTInfo_GetNonce(swigCPtr, this);
00108   }
00109 
00110   public void SetTSA(CPKIFGeneralNamePtr tsa) {
00111     pkif_moduleJNI.CPKIFTSTInfo_SetTSA(swigCPtr, this, CPKIFGeneralNamePtr.getCPtr(tsa), tsa);
00112   }
00113 
00114   public CPKIFGeneralNamePtr GetTSA() {
00115     return new CPKIFGeneralNamePtr(pkif_moduleJNI.CPKIFTSTInfo_GetTSA(swigCPtr, this), true);
00116   }
00117 
00118   public CPKIFBufferPtr Encode() {
00119     return new CPKIFBufferPtr(pkif_moduleJNI.CPKIFTSTInfo_Encode(swigCPtr, this), true);
00120   }
00121 
00122   public void Decode(CPKIFBufferPtr bp) {
00123     pkif_moduleJNI.CPKIFTSTInfo_Decode(swigCPtr, this, CPKIFBufferPtr.getCPtr(bp), bp);
00124   }
00125 
00126   public boolean ExtensionsPresent() {
00127     return pkif_moduleJNI.CPKIFTSTInfo_ExtensionsPresent(swigCPtr, this);
00128   }
00129 
00130 }

Generated on Mon Nov 15 11:15:50 2010 for PublicKeyInfrastructureFramework(PKIF) by  doxygen 1.5.6