Uses of Class
com.jniwrapper.win32.service.Service.StartupType

Packages that use Service.StartupType
com.jniwrapper.win32.service The com.jniwrapper.win32.service package contains classes for working with Windows services. 
 

Uses of Service.StartupType in com.jniwrapper.win32.service
 

Fields in com.jniwrapper.win32.service declared as Service.StartupType
static Service.StartupType Service.StartupType.AUTO_START
          Service is started at system startup.
static Service.StartupType Service.StartupType.BOOT_START
          Device driver is started by the IoInitSystem function.
static Service.StartupType Service.StartupType.DEMAND_START
          Service is started by the user in Controls application or programmatically.
static Service.StartupType Service.StartupType.DISABLED
          Service is disabled.
static Service.StartupType Service.StartupType.SYSTEM_START
          Device driver is started by the system loader.
 

Methods in com.jniwrapper.win32.service that return Service.StartupType
static Service.StartupType Service.StartupType.create(int type)
           
 Service.StartupType Service.getStartupType()
          Returns startup type of the service.
 

Methods in com.jniwrapper.win32.service with parameters of type Service.StartupType
 Service ServiceManager.create(java.lang.String serviceName, java.lang.String displayName, java.io.File executable, Service.StartupType startupType)
          Creates a service with given attributes in the service database.
 Service ServiceManager.create(java.lang.String serviceName, java.lang.String displayName, java.io.File executable, Service.StartupType startupType, java.lang.String[] dependencies)
          Creates a service with given attributes in the service database.
 Service ServiceManager.create(java.lang.String serviceName, java.lang.String displayName, java.io.File executableFile, Service.StartupType startupType, java.lang.String[] dependencies, Service.AccessRights access, Service.Type serviceType, Service.ErrorControl errorControl, java.lang.String startAccount, java.lang.String password)
          Creates a service with the given attributes in the service database.
 void Service.setStartupType(Service.StartupType startupType)
          Sets startup type of the service.