CPKIFReasonFlags.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 CPKIFReasonFlags {
00012 private long swigCPtr;
00013 protected boolean swigCMemOwn;
00014
00015 public CPKIFReasonFlags(long cPtr, boolean cMemoryOwn) {
00016 swigCMemOwn = cMemoryOwn;
00017 swigCPtr = cPtr;
00018 }
00019
00020 public static long getCPtr(CPKIFReasonFlags 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_CPKIFReasonFlags(swigCPtr);
00033 }
00034 swigCPtr = 0;
00035 }
00036 }
00037
00038 public CPKIFReasonFlags() {
00039 this(pkif_moduleJNI.new_CPKIFReasonFlags(), true);
00040 }
00041
00042 public boolean GetUnused() {
00043 return pkif_moduleJNI.CPKIFReasonFlags_GetUnused(swigCPtr, this);
00044 }
00045
00046 public boolean GetKeyCompromise() {
00047 return pkif_moduleJNI.CPKIFReasonFlags_GetKeyCompromise(swigCPtr, this);
00048 }
00049
00050 public boolean GetCACompromise() {
00051 return pkif_moduleJNI.CPKIFReasonFlags_GetCACompromise(swigCPtr, this);
00052 }
00053
00054 public boolean GetAffiliationChanged() {
00055 return pkif_moduleJNI.CPKIFReasonFlags_GetAffiliationChanged(swigCPtr, this);
00056 }
00057
00058 public boolean GetSuperseded() {
00059 return pkif_moduleJNI.CPKIFReasonFlags_GetSuperseded(swigCPtr, this);
00060 }
00061
00062 public boolean GetCessationOfOperation() {
00063 return pkif_moduleJNI.CPKIFReasonFlags_GetCessationOfOperation(swigCPtr, this);
00064 }
00065
00066 public boolean GetCertificateHold() {
00067 return pkif_moduleJNI.CPKIFReasonFlags_GetCertificateHold(swigCPtr, this);
00068 }
00069
00070 public boolean GetPrivilegeWithdrawn() {
00071 return pkif_moduleJNI.CPKIFReasonFlags_GetPrivilegeWithdrawn(swigCPtr, this);
00072 }
00073
00074 public boolean GetAACompromise() {
00075 return pkif_moduleJNI.CPKIFReasonFlags_GetAACompromise(swigCPtr, this);
00076 }
00077
00078 public void SetUnused() {
00079 pkif_moduleJNI.CPKIFReasonFlags_SetUnused(swigCPtr, this);
00080 }
00081
00082 public void SetKeyCompromise() {
00083 pkif_moduleJNI.CPKIFReasonFlags_SetKeyCompromise(swigCPtr, this);
00084 }
00085
00086 public void SetCACompromise() {
00087 pkif_moduleJNI.CPKIFReasonFlags_SetCACompromise(swigCPtr, this);
00088 }
00089
00090 public void SetAffiliationChanged() {
00091 pkif_moduleJNI.CPKIFReasonFlags_SetAffiliationChanged(swigCPtr, this);
00092 }
00093
00094 public void SetSuperseded() {
00095 pkif_moduleJNI.CPKIFReasonFlags_SetSuperseded(swigCPtr, this);
00096 }
00097
00098 public void SetCessationOfOperation() {
00099 pkif_moduleJNI.CPKIFReasonFlags_SetCessationOfOperation(swigCPtr, this);
00100 }
00101
00102 public void SetCertificateHold() {
00103 pkif_moduleJNI.CPKIFReasonFlags_SetCertificateHold(swigCPtr, this);
00104 }
00105
00106 public void SetPrivilegeWithdrawn() {
00107 pkif_moduleJNI.CPKIFReasonFlags_SetPrivilegeWithdrawn(swigCPtr, this);
00108 }
00109
00110 public void SetAACompromise() {
00111 pkif_moduleJNI.CPKIFReasonFlags_SetAACompromise(swigCPtr, this);
00112 }
00113
00114 }