Searched refs:supportedExts (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DKeyChecker.java54 private Set<String> supportedExts; field in class:KeyChecker
89 if (supportedExts == null) {
90 supportedExts = new HashSet<String>();
91 supportedExts.add(PKIXExtensions.KeyUsage_Id.toString());
92 supportedExts.add(PKIXExtensions.ExtendedKeyUsage_Id.toString());
93 supportedExts.add(PKIXExtensions.SubjectAlternativeName_Id.toString());
94 supportedExts = Collections.unmodifiableSet(supportedExts);
96 return supportedExts;
H A DConstraintsChecker.java63 private Set<String> supportedExts; field in class:ConstraintsChecker
92 if (supportedExts == null) {
93 supportedExts = new HashSet<String>();
94 supportedExts.add(PKIXExtensions.BasicConstraints_Id.toString());
95 supportedExts.add(PKIXExtensions.NameConstraints_Id.toString());
96 supportedExts = Collections.unmodifiableSet(supportedExts);
98 return supportedExts;
H A DPolicyChecker.java72 private Set<String> supportedExts; field in class:PolicyChecker
154 if (supportedExts == null) {
155 supportedExts = new HashSet<String>();
156 supportedExts.add(PKIXExtensions.CertificatePolicies_Id.toString());
157 supportedExts.add(PKIXExtensions.PolicyMappings_Id.toString());
158 supportedExts.add(PKIXExtensions.PolicyConstraints_Id.toString());
159 supportedExts.add(PKIXExtensions.InhibitAnyPolicy_Id.toString());
160 supportedExts = Collections.unmodifiableSet(supportedExts);
162 return supportedExts;
[all...]
H A DForwardBuilder.java733 Set<String> supportedExts = checker.getSupportedExtensions();
734 if (supportedExts != null) {
735 unresCritExts.removeAll(supportedExts);

Completed in 56 milliseconds