| java.lang.Object org.tanukisoftware.wrapper.WrapperWin32Service
WrapperWin32Service | public class WrapperWin32Service (Code) | | A WrapperWin32Service contains information about an individual service
registered with the current system.
author: Leif Mortenson |
Constructor Summary | |
| WrapperWin32Service(byte[] name, byte[] displayName, int serviceState, int exitCode) |
SERVICE_STATE_CONTINUE_PENDING | final public static int SERVICE_STATE_CONTINUE_PENDING(Code) | | |
SERVICE_STATE_PAUSED | final public static int SERVICE_STATE_PAUSED(Code) | | |
SERVICE_STATE_PAUSE_PENDING | final public static int SERVICE_STATE_PAUSE_PENDING(Code) | | |
SERVICE_STATE_RUNNING | final public static int SERVICE_STATE_RUNNING(Code) | | |
SERVICE_STATE_START_PENDING | final public static int SERVICE_STATE_START_PENDING(Code) | | |
SERVICE_STATE_STOPPED | final public static int SERVICE_STATE_STOPPED(Code) | | |
SERVICE_STATE_STOP_PENDING | final public static int SERVICE_STATE_STOP_PENDING(Code) | | |
WrapperWin32Service | WrapperWin32Service(byte[] name, byte[] displayName, int serviceState, int exitCode)(Code) | | |
getDisplayName | public String getDisplayName()(Code) | | Returns the display name of the service.
The display name of the service. |
getExitCode | public int getExitCode()(Code) | | Returns the exit of the service, or 0 if it is still running.
The exit of the service. |
getName | public String getName()(Code) | | Returns the name of the service.
The name of the service. |
getServiceState | public int getServiceState()(Code) | | Returns the last known state of the service.
The last known state of the service. |
getServiceStateName | public String getServiceStateName()(Code) | | Returns the last known state name of the service.
The last known state name of the service. |
toString | public String toString()(Code) | | Returns a string representation of the user.
A string representation of the user. |
|
|