1 13 14 package org.ejbca.core.model.ca.caadmin.extendedcaservices; 15 16 import java.io.Serializable ; 17 18 19 20 27 public abstract class ExtendedCAServiceInfo implements Serializable { 28 29 32 public static final int STATUS_INACTIVE = 1; 33 public static final int STATUS_ACTIVE = 2; 34 35 public static final int TYPE_OCSPEXTENDEDSERVICE = 1; 36 public static final int TYPE_XKMSEXTENDEDSERVICE = 2; 37 public static final int TYPE_CMSEXTENDEDSERVICE = 3; 38 39 private int status = STATUS_INACTIVE; 40 41 public ExtendedCAServiceInfo(int status){ 42 this.status = status; 43 } 44 45 public int getStatus(){ return this.status; } 46 47 } 48 | Popular Tags |