1 17 package org.apache.servicemix.http; 18 19 public interface HttpConfigurationMBean { 20 21 public boolean isStreamingEnabled(); 22 23 public void setStreamingEnabled(boolean streamingEnabled); 24 25 public String getJettyConnectorClassName(); 26 27 public void setJettyConnectorClassName(String jettyConnectorClassName); 28 29 public int getJettyThreadPoolSize(); 30 31 public void setJettyThreadPoolSize(int jettyThreadPoolSize); 32 33 public int getMaxConnectionsPerHost(); 34 35 public void setMaxConnectionsPerHost(int maxConnectionsPerHost); 36 37 public int getMaxTotalConnections(); 38 39 public void setMaxTotalConnections(int maxTotalConnections); 40 41 public String getKeystoreManagerName(); 42 43 public void setKeystoreManagerName(String name); 44 45 public String getAuthenticationServiceName(); 46 47 public void setAuthenticationServiceName(String name); 48 49 public boolean isJettyManagement(); 50 51 public void setJettyManagement(boolean jettyManagement); 52 53 } 54 | Popular Tags |