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

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DTrustAnchor.java68 private final X500Principal caPrincipal; field in class:TrustAnchor
132 this.caPrincipal = null;
153 * @param caPrincipal the name of the most-trusted CA as X500Principal
159 * @throws NullPointerException if the specified <code>caPrincipal</code> or
163 public TrustAnchor(X500Principal caPrincipal, PublicKey pubKey, argument
165 if ((caPrincipal == null) || (pubKey == null)) {
169 this.caPrincipal = caPrincipal;
170 this.caName = caPrincipal.getName();
218 this.caPrincipal
[all...]

Completed in 507 milliseconds