protected Map<String,Set<String>> getConnectorCiphers() {
Map<String,Set<String>> result = new HashMap<>();
Engine e = (Engine) host.getParent();
Service s = e.getService();
Connector connectors[] = s.findConnectors();
for (Connector connector : connectors) {
Set<String> cipherList = new HashSet<>();
if (Boolean.TRUE.equals(connector.getProperty("SSLEnabled"))) {
String[] ciphersUsed =
(String[]) connector.getProperty("ciphersUsed");