CPKIFCRLReason.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 CPKIFCRLReason extends CPKIFX509Extension {
00012 private long swigCPtr;
00013
00014 public CPKIFCRLReason(long cPtr, boolean cMemoryOwn) {
00015 super(pkif_moduleJNI.CPKIFCRLReason_SWIGUpcast(cPtr), cMemoryOwn);
00016 swigCPtr = cPtr;
00017 }
00018
00019 public static long getCPtr(CPKIFCRLReason 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_CPKIFCRLReason(swigCPtr);
00032 }
00033 swigCPtr = 0;
00034 }
00035 super.delete();
00036 }
00037
00038 public CPKIFCRLReason() {
00039 this(pkif_moduleJNI.new_CPKIFCRLReason__SWIG_0(), true);
00040 }
00041
00042 public CPKIFCRLReason(int reason) {
00043 this(pkif_moduleJNI.new_CPKIFCRLReason__SWIG_1(reason), true);
00044 }
00045
00046 public CPKIFCRLReason(boolean criticality, CPKIFBufferPtr ext) {
00047 this(pkif_moduleJNI.new_CPKIFCRLReason__SWIG_2(criticality, CPKIFBufferPtr.getCPtr(ext), ext), true);
00048 }
00049
00050 public static void setExtOID(String value) {
00051 pkif_moduleJNI.CPKIFCRLReason_extOID_set(value);
00052 }
00053
00054 public static String getExtOID() {
00055 return pkif_moduleJNI.CPKIFCRLReason_extOID_get();
00056 }
00057
00058 public CPKIFOIDPtr oid() {
00059 return new CPKIFOIDPtr(pkif_moduleJNI.CPKIFCRLReason_oid(swigCPtr, this), true);
00060 }
00061
00062 public boolean Unspecified() {
00063 return pkif_moduleJNI.CPKIFCRLReason_Unspecified(swigCPtr, this);
00064 }
00065
00066 public boolean KeyCompromise() {
00067 return pkif_moduleJNI.CPKIFCRLReason_KeyCompromise(swigCPtr, this);
00068 }
00069
00070 public boolean CACompromise() {
00071 return pkif_moduleJNI.CPKIFCRLReason_CACompromise(swigCPtr, this);
00072 }
00073
00074 public boolean AffiliationChanged() {
00075 return pkif_moduleJNI.CPKIFCRLReason_AffiliationChanged(swigCPtr, this);
00076 }
00077
00078 public boolean Superseded() {
00079 return pkif_moduleJNI.CPKIFCRLReason_Superseded(swigCPtr, this);
00080 }
00081
00082 public boolean CessationOfOperation() {
00083 return pkif_moduleJNI.CPKIFCRLReason_CessationOfOperation(swigCPtr, this);
00084 }
00085
00086 public boolean CertificateHold() {
00087 return pkif_moduleJNI.CPKIFCRLReason_CertificateHold(swigCPtr, this);
00088 }
00089
00090 public boolean RemoveFromCRL() {
00091 return pkif_moduleJNI.CPKIFCRLReason_RemoveFromCRL(swigCPtr, this);
00092 }
00093
00094 public CPKIFBufferPtr value() {
00095 return new CPKIFBufferPtr(pkif_moduleJNI.CPKIFCRLReason_value(swigCPtr, this), true);
00096 }
00097
00098 }