OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_certalias
(Results
1 - 1
of
1
) sorted by null
/external/jetty/src/java/org/eclipse/jetty/util/ssl/
SslContextFactory.java
131
private String
_certAlias
;
271
if (
_certAlias
== null)
274
_certAlias
= aliases.size() == 1 ? aliases.get(0) : null;
277
Certificate cert =
_certAlias
== null?null:keyStore.getCertificate(
_certAlias
);
280
throw new Exception("No certificate found in the keystore" + (
_certAlias
==null ? "":" for alias " +
_certAlias
));
537
return
_certAlias
;
549
_certAlias
= certAlias;
[
all
...]
Completed in 2692 milliseconds