Home | History | Annotate | Download | only in cert

Lines Matching refs:TrustAnchor

40  * validation algorithm, as well as a {@code TrustAnchor} describing
60 private TrustAnchor trustAnchor;
68 * @param trustAnchor a {@code TrustAnchor} describing the CA that
74 * {@code trustAnchor} parameters are {@code null}
76 public PKIXCertPathValidatorResult(TrustAnchor trustAnchor,
81 if (trustAnchor == null)
82 throw new NullPointerException("trustAnchor must be non-null");
83 this.trustAnchor = trustAnchor;
89 * Returns the {@code TrustAnchor} describing the CA that served
92 * @return the {@code TrustAnchor} (never {@code null})
94 public TrustAnchor getTrustAnchor() {
95 return trustAnchor;
153 sb.append(" Trust Anchor: " + trustAnchor.toString() + "\n");