1 19 20 package net.sourceforge.jcetaglib.tools; 21 22 import java.security.cert.X509Certificate ; 23 24 32 33 public class signerInfo { 34 private String status; 35 private X509Certificate cert; 36 37 42 public void setStatus(String status) { 43 this.status = status; 44 } 45 46 51 public String getStatus() { 52 return status; 53 } 54 55 60 public void setCert(X509Certificate cert) { 61 this.cert = cert; 62 } 63 64 69 public X509Certificate getCert() { 70 return cert; 71 } 72 } 73 | Popular Tags |