MCPcopy Create free account
hub / github.com/DeNA/PacketProxy / find

Method find

src/main/java/core/packetproxy/model/CAFactory.java:91–93  ·  view source on GitHub ↗
(String name)

Source from the content-addressed store, hash-verified

89 }
90
91 public static Optional<CA> find(String name) {
92 return ca_list.stream().filter(ca -> ca.getName().equalsIgnoreCase(name)).findFirst();
93 }
94
95 public static List<CA> queryExportable() {
96 return ca_list.stream().filter(ca -> ca.isExportable()).collect(Collectors.toList());

Callers 15

getCAMethod · 0.95
actionPerformedMethod · 0.95
parseHostNameMethod · 0.45
getCommonNameMethod · 0.45
parseHttpDelimiterMethod · 0.45
analyzeStatusLineMethod · 0.45
getCommonNameMethod · 0.45
replaceRegexMethod · 0.45

Calls 3

getNameMethod · 0.65
filterMethod · 0.45
streamMethod · 0.45

Tested by

no test coverage detected