View Javadoc
1 package jsdsi; 2 3 /*** 4 * Statistics from a cert path builder process. 5 * 6 * @see CertPathBuilder 7 * @see CertPathBuilderResult 8 * 9 * @author Sameer Ajmani 10 * @version $Revision: 1.1.6.1 $ $Date: 2005/11/08 03:12:52 $ 11 */ 12 public class CertPathBuilderStats { 13 /*** 14 * Number of certs fetched from cert store. 15 */ 16 private int numFetched; 17 18 /*** 19 * Creates a new <code>CertPathBuilderStats</code> with a given 20 * number of certs fetched from the cert store. 21 * 22 * @param fetched number of certs fetched from the cert store. 23 */ 24 CertPathBuilderStats(int fetched) { 25 numFetched = fetched; 26 } 27 28 /*** 29 * Returns the number of certs fetched from the cert store. 30 * 31 * @return the number of certs fetched from the cert store. 32 */ 33 public int getNumFetched() { 34 return numFetched; 35 } 36 }

This page was automatically generated by Maven