RevocationStatus.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 final class RevocationStatus {
00012   public final static RevocationStatus REVOKED = new RevocationStatus("REVOKED");
00013   public final static RevocationStatus NOT_CHECKED = new RevocationStatus("NOT_CHECKED");
00014   public final static RevocationStatus NOT_REVOKED = new RevocationStatus("NOT_REVOKED");
00015   public final static RevocationStatus SERVER_CHECKED = new RevocationStatus("SERVER_CHECKED");
00016 
00017   public final int swigValue() {
00018     return swigValue;
00019   }
00020 
00021   public String toString() {
00022     return swigName;
00023   }
00024 
00025   public static RevocationStatus swigToEnum(int swigValue) {
00026     if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue)
00027       return swigValues[swigValue];
00028     for (int i = 0; i < swigValues.length; i++)
00029       if (swigValues[i].swigValue == swigValue)
00030         return swigValues[i];
00031     throw new IllegalArgumentException("No enum " + RevocationStatus.class + " with value " + swigValue);
00032   }
00033 
00034   private RevocationStatus(String swigName) {
00035     this.swigName = swigName;
00036     this.swigValue = swigNext++;
00037   }
00038 
00039   private RevocationStatus(String swigName, int swigValue) {
00040     this.swigName = swigName;
00041     this.swigValue = swigValue;
00042     swigNext = swigValue+1;
00043   }
00044 
00045   private RevocationStatus(String swigName, RevocationStatus swigEnum) {
00046     this.swigName = swigName;
00047     this.swigValue = swigEnum.swigValue;
00048     swigNext = this.swigValue+1;
00049   }
00050 
00051   private static RevocationStatus[] swigValues = { REVOKED, NOT_CHECKED, NOT_REVOKED, SERVER_CHECKED };
00052   private static int swigNext = 0;
00053   private final int swigValue;
00054   private final String swigName;
00055 }
00056 

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