| 1 17 18 package org.sape.carbon.services.jmx.server.mx4j; 19 20 21 import org.sape.carbon.core.component.ComponentConfiguration; 22 import org.sape.carbon.services.jmx.server.MBeanServerService; 23 24 32 public interface JrmpRemotingConfiguration extends ComponentConfiguration { 33 34 int Port = 1099; 35 36 41 int getPort(); 42 43 48 void setPort(int port); 49 50 51 String Hostname = "localhost"; 52 53 58 String getHostname(); 59 60 65 void setHostname(String hostname); 66 67 69 String MBeanServerService = "ref:///manage/DefaultMBeanServer"; 70 71 76 MBeanServerService getMBeanServerService(); 77 78 83 void setMBeanServerService(MBeanServerService mbeanServerService); 84 85 86 String InitialContextFactoryClass = 87 "com.sun.jndi.rmi.registry.RegistryContextFactory"; 88 89 94 Class getInitialContextFactoryClass(); 95 96 101 void setInitialContextFactoryClass(Class initialContextFactory); 102 103 } 104 | Popular Tags |