Searched defs:crlNum (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DDeltaCRLIndicatorExtension.java75 * @param crlNum the value to be set for the extension.
77 public DeltaCRLIndicatorExtension(int crlNum) throws IOException { argument
79 BigInteger.valueOf(crlNum), NAME, LABEL);
86 * @param crlNum the value to be set for the extension.
88 public DeltaCRLIndicatorExtension(BigInteger crlNum) throws IOException { argument
89 super(PKIXExtensions.DeltaCRLIndicator_Id, true, crlNum, NAME, LABEL);
H A DCRLNumberExtension.java78 * @param crlNum the value to be set for the extension.
80 public CRLNumberExtension(int crlNum) throws IOException { argument
81 this(PKIXExtensions.CRLNumber_Id, false, BigInteger.valueOf(crlNum),
89 * @param crlNum the value to be set for the extension.
91 public CRLNumberExtension(BigInteger crlNum) throws IOException { argument
92 this(PKIXExtensions.CRLNumber_Id, false, crlNum, NAME, LABEL);
99 boolean isCritical, BigInteger crlNum, String extensionName,
104 this.crlNumber = crlNum;
98 CRLNumberExtension(ObjectIdentifier extensionId, boolean isCritical, BigInteger crlNum, String extensionName, String extensionLabel) argument

Completed in 30 milliseconds