Package org.apache.axis.management.jmx
Interface ServiceAdministratorMBean
-
- All Known Implementing Classes:
ServiceAdministrator
public interface ServiceAdministratorMBeanThe ServiceAdministrator MBean exposes the org.apache.axis.management.ServiceAdmin object- Version:
- 1.0
- Author:
- bdillon
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetVersion()get the axis versionvoidrestart()restart the servervoidstart()Start the servervoidstartService(java.lang.String serviceName)Start the Servicevoidstop()stop the servervoidstopService(java.lang.String serviceName)Stop the Service
-
-
-
Method Detail
-
getVersion
java.lang.String getVersion()
get the axis version- Returns:
-
start
void start()
Start the server
-
stop
void stop()
stop the server
-
restart
void restart()
restart the server
-
startService
void startService(java.lang.String serviceName) throws AxisFault, ConfigurationExceptionStart the Service- Parameters:
serviceName-- Throws:
AxisFault- ConfigurationExceptionConfigurationException
-
stopService
void stopService(java.lang.String serviceName) throws AxisFault, ConfigurationExceptionStop the Service- Parameters:
serviceName-- Throws:
AxisFault- ConfigurationExceptionConfigurationException
-
-