Package org.apache.axis.management.jmx
Interface ServiceAdministratorMBean
-
- All Known Implementing Classes:
ServiceAdministrator
public interface ServiceAdministratorMBean
The 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.String
getVersion()
get the axis versionvoid
restart()
restart the servervoid
start()
Start the servervoid
startService(java.lang.String serviceName)
Start the Servicevoid
stop()
stop the servervoid
stopService(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, ConfigurationException
Start the Service- Parameters:
serviceName
-- Throws:
AxisFault
- ConfigurationExceptionConfigurationException
-
stopService
void stopService(java.lang.String serviceName) throws AxisFault, ConfigurationException
Stop the Service- Parameters:
serviceName
-- Throws:
AxisFault
- ConfigurationExceptionConfigurationException
-
-