private String getProtocols(Connector connector) {
   try {
     List<String> protocols = connector.getProtocols();
     return " (" + StringUtils.collectionToDelimitedString(protocols, ", ") + ")";
   } catch (NoSuchMethodError ex) {
     // Not available with Jetty 8
     return "";
   }
 }