CPKIFCertificatePath.java
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 package com.orionsec.jpkif;
00010
00011 public class CPKIFCertificatePath {
00012 private long swigCPtr;
00013 protected boolean swigCMemOwn;
00014
00015 public CPKIFCertificatePath(long cPtr, boolean cMemoryOwn) {
00016 swigCMemOwn = cMemoryOwn;
00017 swigCPtr = cPtr;
00018 }
00019
00020 public static long getCPtr(CPKIFCertificatePath obj) {
00021 return (obj == null) ? 0 : obj.swigCPtr;
00022 }
00023
00024 protected void finalize() {
00025 delete();
00026 }
00027
00028 public synchronized void delete() {
00029 if (swigCPtr != 0) {
00030 if (swigCMemOwn) {
00031 swigCMemOwn = false;
00032 pkif_moduleJNI.delete_CPKIFCertificatePath(swigCPtr);
00033 }
00034 swigCPtr = 0;
00035 }
00036 }
00037
00038 public CPKIFCertificatePath() {
00039 this(pkif_moduleJNI.new_CPKIFCertificatePath(), true);
00040 }
00041
00042 public void SetTarget(CPKIFCertificatePtr cert) {
00043 pkif_moduleJNI.CPKIFCertificatePath_SetTarget(swigCPtr, this, CPKIFCertificatePtr.getCPtr(cert), cert);
00044 }
00045
00046 public void GetTarget(CPKIFCertificatePtr cert) {
00047 pkif_moduleJNI.CPKIFCertificatePath_GetTarget(swigCPtr, this, CPKIFCertificatePtr.getCPtr(cert), cert);
00048 }
00049
00050 public void SetPath(CPKIFCertificateNodeList path) {
00051 pkif_moduleJNI.CPKIFCertificatePath_SetPath(swigCPtr, this, CPKIFCertificateNodeList.getCPtr(path), path);
00052 }
00053
00054 public void GetPath(CPKIFCertificateNodeList path) {
00055 pkif_moduleJNI.CPKIFCertificatePath_GetPath(swigCPtr, this, CPKIFCertificateNodeList.getCPtr(path), path);
00056 }
00057
00058 public void SetState(CPKIFCertificatePathStatePtr state) {
00059 pkif_moduleJNI.CPKIFCertificatePath_SetState(swigCPtr, this, CPKIFCertificatePathStatePtr.getCPtr(state), state);
00060 }
00061
00062 public void GetState(CPKIFCertificatePathStatePtr state) {
00063 pkif_moduleJNI.CPKIFCertificatePath_GetState(swigCPtr, this, CPKIFCertificatePathStatePtr.getCPtr(state), state);
00064 }
00065
00066 public void SetTrustRoot(IPKIFTrustAnchorPtr root) {
00067 pkif_moduleJNI.CPKIFCertificatePath_SetTrustRoot(swigCPtr, this, IPKIFTrustAnchorPtr.getCPtr(root), root);
00068 }
00069
00070 public void GetTrustRoot(IPKIFTrustAnchorPtr root) {
00071 pkif_moduleJNI.CPKIFCertificatePath_GetTrustRoot(swigCPtr, this, IPKIFTrustAnchorPtr.getCPtr(root), root);
00072 }
00073
00074 public void SetPathSettings(CPKIFPathSettingsPtr settings) {
00075 pkif_moduleJNI.CPKIFCertificatePath_SetPathSettings(swigCPtr, this, CPKIFPathSettingsPtr.getCPtr(settings), settings);
00076 }
00077
00078 public void GetPathSettings(CPKIFPathSettingsPtr settings) {
00079 pkif_moduleJNI.CPKIFCertificatePath_GetPathSettings(swigCPtr, this, CPKIFPathSettingsPtr.getCPtr(settings), settings);
00080 }
00081
00082 public void SetBuilderStats(CPKIFBuilderStatisticsPtr stats) {
00083 pkif_moduleJNI.CPKIFCertificatePath_SetBuilderStats(swigCPtr, this, CPKIFBuilderStatisticsPtr.getCPtr(stats), stats);
00084 }
00085
00086 public void GetBuilderStats(CPKIFBuilderStatisticsPtr stats) {
00087 pkif_moduleJNI.CPKIFCertificatePath_GetBuilderStats(swigCPtr, this, CPKIFBuilderStatisticsPtr.getCPtr(stats), stats);
00088 }
00089
00090 }