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

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DInhibitAnyPolicyExtension.java94 private int skipCerts = Integer.MAX_VALUE; field in class:InhibitAnyPolicyExtension
99 out.putInteger(skipCerts);
106 * @param skipCerts specifies the depth of the certification path.
109 public InhibitAnyPolicyExtension(int skipCerts) throws IOException { argument
110 if (skipCerts < -1)
111 throw new IOException("Invalid value for skipCerts");
112 if (skipCerts == -1)
113 this.skipCerts = Integer.MAX_VALUE;
115 this.skipCerts = skipCerts;
[all...]

Completed in 40 milliseconds