1 10 11 package org.mule.providers.http.jetty; 12 13 import org.mule.providers.http.HttpConnector; 14 15 22 23 public class JettyConnector extends HttpConnector 24 { 25 public JettyConnector() 26 { 27 super(); 28 registerSupportedProtocol("http"); 29 registerSupportedProtocol("https"); 30 registerSupportedProtocol("rest"); 31 } 32 33 public String getProtocol() 34 { 35 return "jetty"; 36 } 37 38 } 39 | Popular Tags |