/** * Retrieve the data blob, Certificate Pretty Print or Base64Encode cert, from the data object. * Used by the view functionality. * * @param row cert table row number * @retrun data in string format */ public String getDataBlob(int row) { try { NameValuePairs obj = (NameValuePairs) getObjectValueAt(row); return obj.get(CERT_DATA); } catch (Exception e) { Debug.println("CertDataModel: getDataBlob()- " + e.toString()); return ""; } }
/** Actual Instantiation of the UI components */ public void init() { Debug.println("AuditLogPanel: init()"); super.init(); refresh(); }